| 123456789101112131415161718192021 |
- {% extends '../layout/admin.html' %}
- {% block html_title %}{{ customizeService.generateCustomTitle(t('Notification settings')) }}{% endblock %}
- {% block content_header %}
- <div class="header-wrap">
- <header id="page-header">
- <h1 id="admin-title" class="title">{{ t('Notification settings') }}</h1>
- </header>
- </div>
- {% endblock %}
- {% block content_main %}
- <div class="content-main admin-notification row">
- {% parent %}
- <div class="col-md-9" id="admin-notification-setting"></div>
- </div>
- {% endblock content_main %}
- {% block content_footer %}
- {% endblock content_footer %}
|