This repository has been archived by the owner on Dec 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
formations.html
99 lines (99 loc) · 3.65 KB
/
formations.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!doctype html>
<html lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Strings - User Management | Bitlancer</title>
<link id="style" rel="stylesheet" type="text/css" href="/strings/assets/css/app.css">
</head>
<body class="loading">
<header>
<div>
<a id="logo">Strings</a>
<ul class="action-menu" id="menu" data-width="140">
<li><img src="https://en.gravatar.com/userimage/42637352/47e00755b87293bcc8381d75bae7b366.jpeg"> Axel Sears</li>
<span>
<a href="/strings/interface-elements.html">Interface Elements</a>
<li>Settings</li>
<li>Sign Out</li>
</span>
</ul>
</div>
</header>
<nav>
<span id="dashboard">
<a href="/strings/index.html">Dashboard</a>
<span>
<a href="/strings/test.html">Test Page</a>
<a href="#">Lorem Ipsum</a>
<a href="#">Lorem Ipsum</a>
</span>
</span>
<span id="devices">
<a href="#">Devices</a>
<span>
<a href="#">Lorem Ipsum</a>
<a href="#">Lorem Ipsum</a>
<a href="#">Lorem Ipsum</a>
</span>
</span>
<span id="formations" class="active">
<a href="/strings/formations.html">Formations</a>
<span>
<a href="/strings/formations-create.html">Create Formation</a>
</span>
</span>
<span id="user-management">
<a href="/strings/user-management.html">User Management</a>
</span>
</nav>
<!-- Content -->
<section>
<h1>Formations</h1>
<div class="columns">
<div>
<table data-type="datatable" id="users" data-cta='<a class="cta primary" href="/strings/formations-create.html">Create formation</a>'>
<thead>
<tr>
<th>Name</th>
</tr>
</thead>
<tbody>
<tr>
<td>
formationOne
<ul class="action-menu" data-width="120">
<li>Actions</li>
<span>
<a class="modal" data-src="/strings/assets/html/ajax/formations/show.html" data-title="formationOne">Detailed View</a>
<a class="modal" data-src="/strings/assets/html/ajax/formations/edit.html" data-title="Edit Formation">Edit</a>
<a class="modal" data-src="/strings/assets/html/ajax/formations/delete.html" data-title="Delete Formation" data-width="600">Delete</a>
</span>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
<div>
<h2>User activity<a class="cta refresh"></a></h2>
<ul id="activity">
<li>asears logged in<small>12 minutes ago</small></li>
<li>jcotton deleted the instance <strong>anarachy</strong><small>about 4 hours ago</small></li>
<li>mjuszczak edited user permissions for <strong>asears</strong><small>2 days ago</small></li>
<li>mjuszczak added the user <strong>asears</strong><small>2 days ago</small></li>
</ul>
</div>
</div>
<hr class="clear">
</section>
<!-- Javascript -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.4/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="/strings/assets/js/jquery.fcbkcomplete.js"></script>
<script type="text/javascript" src="/strings/assets/js/app.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</body>
</html>