security.html 534 B

12345678910111213141516171819
  1. {% extends '../layout/admin.html' %}
  2. {% block html_title %}{{ customizeService.generateCustomTitle(t('security_settings')) }} · {% endblock %}
  3. {% block content_header %}
  4. <header id="page-header">
  5. <h1 id="admin-title" class="title">{{ t('security_settings') }}</h1>
  6. </header>
  7. {% endblock %}
  8. {% block content_main %}
  9. <div class="content-main admin-security row">
  10. {% parent %}
  11. <div class="col-md-9" id="admin-security-setting"></div>
  12. </div>
  13. {% endblock content_main %}
  14. {% block content_footer %}
  15. {% endblock content_footer %}