progress bar on startup, and make sure stuff is loaded before we display it
[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 <div id="contentPanel">
18 <div id="contentTitle">
19 </div>
20 <div id="contentButtonPanel">
21 <!-- This is really a convoluted way of handling the buttons. The onClick
22      handler for this Save button tells the save button inside the detail
23      form to click itself.
24 -->
25 <div class="box save-box" id="xos-detail-button-box">
26 <button class="btn btn-high btn-info btn-xos-contentButtonPanel" onclick="$('button.btn-xos-save-leave').click()">Save</button>
27 <button class="btn btn-high btn-xos-contentButtonPanel" onclick="$('button.btn-xos-save-continue').click()">Save and continue editing</button>
28 <button class="btn btn-high btn-xos-contentButtonPanel" onclick="$('button.btn-xos-save-another').click()">Save and add another</button>
29 </div>
30 <div class="box save-box" id="xos-listview-button-box">
31 <button class="btn btn-high btn-success btn-xos-contentButtonPanel" onclick="$('button.btn-xos-add').click()">Add</button>
32 </div>
33 </div> <!-- end contentButtonPanel -->
34 <div id="contentInner">
35 <div id="tabs">
36 </div>
37 <div id="detail"></div>
38 <div id="linkedObjs1"></div>
39 <div id="linkedObjs2"></div>
40 <div id="linkedObjs3"></div>
41 <div id="linkedObjs4"></div>
42 </div> <!-- end contentInner -->
43 </div> <!-- end contentPanel -->
44
45 <div id="logPanel">
46 <table id="logTable">
47 <thead>
48 <tr><th>status</th><th>operation</th><th>code</th><th>message</th></tr>
49 </thead>
50 <tbody>
51 </tbody>
52 </table>
53
54 </div>
55
56 {% include 'xosAdmin.html' %}