Scott Baker | 3bc40f7 | 2014-11-05 22:16:10 -0800 | [diff] [blame^] | 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" type="text/css" href="{% static 'css/xosAdminDashboard.css' %}" media="all" > |
| 9 | <link rel="stylesheet" type="text/css" href="{% static 'css/xosAdminSite.css' %}" media="all" > |
| 10 | |
| 11 | <script src="{{ STATIC_URL }}/js/xoslib/xos-backbone.js"></script> |
| 12 | <script src="{{ STATIC_URL }}/js/xoslib/xosHelper.js"></script> |
| 13 | <script src="{{ STATIC_URL }}/js/xosAdminSite.js"></script> |
| 14 | |
| 15 | <div id="contentPanel"> |
| 16 | <div id="contentTitle"> |
| 17 | </div> |
| 18 | <div id="contentButtonPanel"> |
| 19 | <!-- This is really a convoluted way of handling the buttons. The onClick |
| 20 | handler for this Save button tells the save button inside the detail |
| 21 | form to click itself. |
| 22 | --> |
| 23 | <button class="btn js-submit btn-xos-contentButtonPanel" onclick="$('button.js-submit.btn-xos-detail').click()">Save</button> |
| 24 | </div> |
| 25 | <div id="contentInner"> |
| 26 | <div id="tabs"> |
| 27 | </div> |
| 28 | <div id="detail"></div> |
| 29 | <div id="linkedObjs1"></div> |
| 30 | <div id="linkedObjs2"></div> |
| 31 | <div id="linkedObjs3"></div> |
| 32 | <div id="linkedObjs4"></div> |
| 33 | </div> |
| 34 | </div> |
| 35 | |
| 36 | <div id="logPanel"> |
| 37 | <table id="logTable"> |
| 38 | <thead> |
| 39 | <tr><th>status</th><th>operation</th><th>code</th><th>message</th></tr> |
| 40 | </thead> |
| 41 | <tbody> |
| 42 | </tbody> |
| 43 | </table> |
| 44 | |
| 45 | </div> |
| 46 | |
| 47 | {% include 'xosAdmin.html' %} |