| <script src="{{ STATIC_URL }}/js/vendor/underscore-min.js"></script> |
| <script src="{{ STATIC_URL }}/js/vendor/backbone.js"></script> |
| <script src="{{ STATIC_URL }}/js/vendor/backbone.syphon.js"></script> |
| <script src="{{ STATIC_URL }}/js/vendor/backbone.wreqr.js"></script> |
| <script src="{{ STATIC_URL }}/js/vendor/backbone.babysitter.js"></script> |
| <script src="{{ STATIC_URL }}/js/vendor/backbone.marionette.js"></script> |
| |
| <link rel="stylesheet" type="text/css" href="{% static 'css/xosAdminDashboard.css' %}" media="all" > |
| <link rel="stylesheet" type="text/css" href="{% static 'css/xosAdminSite.css' %}" media="all" > |
| |
| <script src="{{ STATIC_URL }}/js/xoslib/xos-defaults.js"></script> |
| <script src="{{ STATIC_URL }}/js/xoslib/xos-backbone.js"></script> |
| <script src="{{ STATIC_URL }}/js/xoslib/xosHelper.js"></script> |
| <script src="{{ STATIC_URL }}/js/xosAdminSite.js"></script> |
| |
| <div id="contentPanel"> |
| <div id="contentTitle"> |
| </div> |
| <div id="contentButtonPanel"> |
| <!-- This is really a convoluted way of handling the buttons. The onClick |
| handler for this Save button tells the save button inside the detail |
| form to click itself. |
| --> |
| <div class="box save-box" id="xos-detail-button-box"> |
| <button class="btn btn-high btn-info btn-xos-contentButtonPanel" onclick="$('button.btn-xos-save-leave').click()">Save</button> |
| <button class="btn btn-high btn-xos-contentButtonPanel" onclick="$('button.btn-xos-save-continue').click()">Save and continue editing</button> |
| <button class="btn btn-high btn-xos-contentButtonPanel" onclick="$('button.btn-xos-save-another').click()">Save and add another</button> |
| </div> |
| <div class="box save-box" id="xos-listview-button-box"> |
| <button class="btn btn-high btn-success btn-xos-contentButtonPanel" onclick="$('button.btn-xos-add').click()">Add</button> |
| </div> |
| </div> <!-- end contentButtonPanel --> |
| <div id="contentInner"> |
| <div id="tabs"> |
| </div> |
| <div id="detail"></div> |
| <div id="linkedObjs1"></div> |
| <div id="linkedObjs2"></div> |
| <div id="linkedObjs3"></div> |
| <div id="linkedObjs4"></div> |
| </div> <!-- end contentInner --> |
| </div> <!-- end contentPanel --> |
| |
| <div id="logPanel"> |
| <table id="logTable"> |
| <thead> |
| <tr><th>status</th><th>operation</th><th>code</th><th>message</th></tr> |
| </thead> |
| <tbody> |
| </tbody> |
| </table> |
| |
| </div> |
| |
| {% include 'xosAdmin.html' %} |