global-notification-detail.html 604 B

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