99050e188e6841d5ca8f5e3a2f38df73c8685125
[plstackapi.git] / planetstack / core / xoslib / dashboards / xosAdminDashboard.html
1 <script src="{{ STATIC_URL }}/js/vendor/underscore-min.js"></script>
2 <script src="{{ STATIC_URL }}/js/vendor/backbone.js"></script>
3 <script src="{{ STATIC_URL }}/js/vendor/backbone.syphon.js"></script>
4 <script src="{{ STATIC_URL }}/js/vendor/backbone.wreqr.js"></script>
5 <script src="{{ STATIC_URL }}/js/vendor/backbone.babysitter.js"></script>
6 <script src="{{ STATIC_URL }}/js/vendor/backbone.marionette.js"></script>
7
8 <link rel="stylesheet" href="//code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css">
9 <link rel="stylesheet" type="text/css" href="{% static 'css/xosAdminDashboard.css' %}" media="all" >
10 <link rel="stylesheet" type="text/css" href="{% static 'css/xosAdminSite.css' %}" media="all" >
11
12 <script src="{{ STATIC_URL }}/js/xoslib/xos-defaults.js"></script>
13 <script src="{{ STATIC_URL }}/js/xoslib/xos-backbone.js"></script>
14 <script src="{{ STATIC_URL }}/js/xoslib/xosHelper.js"></script>
15 <script src="{{ STATIC_URL }}/js/xosAdminSite.js"></script>
16
17 <script type="text/template" id="xos-log-template">
18   <tr id="<%= logMessageId %>" class="xos-log xos-<%= statusclass %>">
19      <td><%= what %><br>
20          <%= status %> <%= statusText %>
21      </td>
22   </tr>
23 </script>
24
25 <div id="contentPanel">
26 <div id="contentTitle">
27 </div>
28 <div id="contentButtonPanel">
29 <!-- This is really a convoluted way of handling the buttons. The onClick
30      handler for this Save button tells the save button inside the detail
31      form to click itself.
32 -->
33 <div class="box save-box" id="xos-detail-button-box">
34 <button class="btn btn-high btn-info btn-xos-contentButtonPanel" onclick="$('button.btn-xos-save-leave').click()">Save</button>
35 <button class="btn btn-high btn-xos-contentButtonPanel" onclick="$('button.btn-xos-save-continue').click()">Save and continue editing</button>
36 <button class="btn btn-high btn-xos-contentButtonPanel" onclick="$('button.btn-xos-save-another').click()">Save and add another</button>
37 <button class="btn btn-danger btn-xos-contentButtonPanel" onclick="$('button.btn-xos-delete').click()">Delete</button>
38 </div>
39 <div class="box save-box" id="xos-listview-button-box">
40 <button class="btn btn-high btn-primary btn-xos-contentButtonPanel" onclick="$('button.btn-xos-refresh').click()">Refresh</button>
41 <button class="btn btn-high btn-success btn-xos-contentButtonPanel" onclick="$('button.btn-xos-add').click()">Add</button>
42 </div>
43 <div class="box" id="logPanel">
44 <table id="logTable">
45 <tbody>
46 </tbody>
47 </table> <!-- end logTable -->
48 </div> <!-- end logPanel -->
49 </div> <!-- end contentButtonPanel -->
50 <div id="contentInner">
51 <div id="tabs">
52 </div>
53 <div id="detail"></div>
54 <div id="linkedObjs1"></div>
55 <div id="linkedObjs2"></div>
56 <div id="linkedObjs3"></div>
57 <div id="linkedObjs4"></div>
58 </div> <!-- end contentInner -->
59 </div> <!-- end contentPanel -->
60
61 {% include 'xosAdmin.html' %}