notification.html 585 B

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