| 12345678910111213141516171819 |
- {% extends '../layout/admin.html' %}
- {% block html_title %}{{ customizeService.generateCustomTitle(t('Notification settings')) }}{% endblock %}
- {% block content_header %}
- <h1 class="title">{{ t('Notification settings') }}</h1>
- {% 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 %}
|