app.html 676 B

123456789101112131415161718192021222324
  1. {% extends '../layout/admin.html' %}
  2. {% block html_title %}{{ customizeService.generateCustomTitle(t('App settings')) }}{% endblock %}
  3. {% block head_warn_alert_siteurl_undefined %} {# remove including block for './widget/alert_siteurl_undefined.html' #}
  4. {% endblock %}
  5. {% block content_header %}
  6. <div class="header-wrap">
  7. <header id="page-header">
  8. <h1 id="admin-title" class="title">{{ t('App settings') }}</h1>
  9. </header>
  10. </div>
  11. {% endblock %}
  12. {% block content_main %}
  13. <div class="content-main admin-app row">
  14. {% parent %}
  15. <div class="col-lg-9" id="admin-app"></div>
  16. </div>
  17. {% endblock content_main %}
  18. {% block content_footer %}
  19. {% endblock content_footer %}