| 12345678910111213141516171819202122232425262728 |
- {% extends '../layout/admin.html' %}
- {% block html_title %}{{ customizeService.generateCustomTitle(t('Customize')) }}{% endblock %}
- {% block html_additional_headers %}
- {% parent %}
- <!-- CodeMirror -->
- {{ cdnStyleTag('jquery-ui') }}
- <style>
- .CodeMirror {
- border: 1px solid #eee;
- }
- </style>
- {% endblock %}
- {% block content_header %}
- <header id="page-header">
- <h1 id="admin-title" class="title">{{ t('Customize') }}</h1>
- </header>
- {% endblock %}
- {% block content_main %}
- <div class="content-main admin-customize row">
- {% parent %}
- <div class="col-md-9" id="admin-customize"></div>
- </div>
- {% endblock content_main %}
- {% block content_footer %} {% endblock content_footer %}
|