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