You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
862 B

4 years ago
  1. {% extends "notebook.html" %}
  2. {% block header_buttons %}
  3. <!-- insert appmode loading screen as early as possible -->
  4. <style>
  5. {% include 'appmode_top.css' %}
  6. </style>
  7. <div id="appmode-loader">
  8. <img src="{{ base_url + "nbextensions/appmode/gears.svg" }}" title="App is loading...">
  9. </div>
  10. {% if show_edit_button %}
  11. <span>
  12. <button id="appmode-leave" class="btn btn-default btn-sm navbar-btn pull-right" title="Edit this app as notebook">Edit App</button>
  13. </span>
  14. {% endif %}
  15. <span>
  16. <img id="appmode-busy" src="{{ base_url + "nbextensions/appmode/gears.svg" }}" title="Kernel Busy">
  17. </span>
  18. {% if show_other_buttons %}
  19. {{super()}}
  20. {% endif %}
  21. {% endblock header_buttons %}
  22. {% block script %}
  23. {{super()}}
  24. <!-- overwrite some styles -->
  25. <style>
  26. {% include 'appmode_bottom.css' %}
  27. </style>
  28. {% endblock %}