customize.html 688 B

12345678910111213141516171819202122232425262728
  1. {% extends '../layout/admin.html' %}
  2. {% block html_title %}{{ customizeService.generateCustomTitle(t('Customize')) }}{% endblock %}
  3. {% block html_additional_headers %}
  4. {% parent %}
  5. <!-- CodeMirror -->
  6. {{ cdnStyleTag('jquery-ui') }}
  7. <style>
  8. .CodeMirror {
  9. border: 1px solid #eee;
  10. }
  11. </style>
  12. {% endblock %}
  13. {% block content_header %}
  14. <header id="page-header">
  15. <h1 id="admin-title" class="title">{{ t('Customize') }}</h1>
  16. </header>
  17. {% endblock %}
  18. {% block content_main %}
  19. <div class="content-main admin-customize row">
  20. {% parent %}
  21. <div class="col-md-9" id="admin-customize"></div>
  22. </div>
  23. {% endblock content_main %}
  24. {% block content_footer %} {% endblock content_footer %}