Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

224 lines
10KB

  1. {# @var ea \EasyCorp\Bundle\EasyAdminBundle\Context\AdminContext #}
  2. {% trans_default_domain ea.i18n.translationDomain %}
  3. <!DOCTYPE html>
  4. <html lang="{{ ea.i18n.htmlLocale }}" dir="{{ ea.i18n.textDirection }}">
  5. <head>
  6. {% block head_metas %}
  7. <meta charset="utf-8">
  8. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  9. <meta name="robots"
  10. content="noindex, nofollow, noarchive, nosnippet, noodp, noimageindex, notranslate, nocache"/>
  11. <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
  12. <meta name="generator" content="EasyAdmin"/>
  13. {% endblock head_metas %}
  14. <title>{% block page_title %}Administration | {{ block('content_title')|striptags|raw }}{% endblock %}</title>
  15. {# {% block head_stylesheets %}
  16. <link rel="stylesheet" href="{{ asset('bundles/easyadmin/app.css') }}">
  17. {% endblock %} #}
  18. <link rel="stylesheet"
  19. href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&amp;display=fallback">
  20. {% block configured_stylesheets %}
  21. {% for css_asset in ea.assets.cssFiles ?? [] %}
  22. <link rel="stylesheet" href="{{ asset(css_asset) }}">
  23. {% endfor %}
  24. {% for webpack_encore_entry in ea.assets.webpackEncoreAssets ?? [] %}
  25. {{ ea_call_function_if_exists('encore_entry_link_tags', webpack_encore_entry) }}
  26. {% endfor %}
  27. {% endblock %}
  28. {% block head_favicon %}
  29. <link rel="shortcut icon" href="{{ asset(ea.dashboardFaviconPath) }}">
  30. {% endblock %}
  31. {# {% block head_javascript %}
  32. <script src="{{ asset('bundles/easyadmin/app.js') }}"></script>
  33. {% endblock head_javascript %} #}
  34. {# {% if 'rtl' == ea.i18n.textDirection %}
  35. <link rel="stylesheet" href="{{ asset('bundles/easyadmin/app.rtl.css') }}">
  36. <link rel="stylesheet" href="{{ asset('bundles/easyadmin/app-custom-rtl.css') }}">
  37. {% endif %} #}
  38. {% block configured_head_contents %}
  39. {% for htmlContent in ea.assets.headContents ?? [] %}
  40. {{ htmlContent|raw }}
  41. {% endfor %}
  42. {% endblock %}
  43. </head>
  44. {% block body %}
  45. <body id="{% block body_id %}{% endblock %}"
  46. class="admin sidebar-mini layout-fixed {% block body_class %}{% endblock %}">
  47. {% block javascript_page_layout %}
  48. <script>
  49. document.body.classList.add(
  50. 'ea-content-width-' + (localStorage.getItem('ea/content/width') || '{{ ea.crud.contentWidth ?? ea.dashboardContentWidth ?? 'normal' }}'),
  51. 'ea-sidebar-width-' + (localStorage.getItem('ea/sidebar/width') || '{{ ea.crud.sidebarWidth ?? ea.dashboardSidebarWidth ?? 'normal' }}')
  52. );
  53. </script>
  54. {% endblock javascript_page_layout %}
  55. {% block wrapper_wrapper %}
  56. {% block flash_messages %}
  57. {{ include(ea.templatePath('flash_messages')) }}
  58. {% endblock flash_messages %}
  59. <div class="wrapper">
  60. {% block wrapper %}
  61. {% block navbar_header %}
  62. {{ include('@LcSov/adminlte/block/navbar_header.html.twig') }}
  63. {% endblock %}
  64. <aside class="main-sidebar sidebar-dark-primary elevation-4">
  65. {% block sidebar %}
  66. {% block header_logo %}
  67. <a class="brand-link text-center"
  68. title="{{ ea.dashboardTitle|striptags }}"
  69. href="{{ path(ea.dashboardRouteName) }}">
  70. {{ ea.dashboardTitle|raw }}
  71. <!--<span class="brand-text font-weight-light">Texte logo</span>-->
  72. </a>
  73. {% endblock header_logo %}
  74. <div class="sidebar">
  75. {% block main_menu_wrapper %}
  76. {{ include(ea.templatePath('main_menu')) }}
  77. {% endblock main_menu_wrapper %}
  78. </div>
  79. {% endblock sidebar %}
  80. </aside>
  81. <div class="content-wrapper" style="min-height: 554px;">
  82. {% block content %}
  83. {% block content_header_wrapper %}
  84. <section class="content-header">
  85. <div class="container-fluid">
  86. <div class="row mb-2">
  87. {% set params_reminders = {crudAction: null, crudControllerFqcn: null, entityId: null} %}
  88. {% if ea is defined and ea %}
  89. {% if ea.crud is defined and ea.crud %}
  90. {% set params_reminders = params_reminders|merge({crudAction: ea.crud.currentAction}) %}
  91. {% set params_reminders = params_reminders|merge({crudControllerFqcn: ea.crud.controllerFqcn}) %}
  92. {% endif %}
  93. {% if ea.request.query.get('entityId') and ea.entity is defined and ea.entity.instance is defined %}
  94. {% set params_reminders = params_reminders|merge({entityId: ea.entity.instance.id}) %}
  95. {% endif %}
  96. {% endif %}
  97. {% block reminders %}
  98. {% set reminders = sov_reminders(params_reminders) %}
  99. {% include '@LcSov/admin/reminder/block.html.twig' %}
  100. {% endblock %}
  101. {% set has_help_message = (ea.crud.helpMessage ?? '') is not empty %}
  102. {% block content_header %}
  103. <div class="col-sm-6">
  104. <h1 class="m-0 text-dark">
  105. {% block content_title %}{% endblock %}
  106. </h1>
  107. {% block content_breadcrumb %}
  108. {% endblock content_breadcrumb %}
  109. {# {% block content_help %}
  110. {% if has_help_message %}
  111. <div class="text-muted">
  112. {{ ea.crud.helpMessage|e('html_attr') }}
  113. </div>
  114. {% endif %}
  115. {% endblock %} #}
  116. </div><!-- /.col -->
  117. <div class="col-sm-6">
  118. {% block page_actions_wrapper %}
  119. <div class="btn-list float-sm-right">
  120. {% block page_actions %}{% endblock %}
  121. </div>
  122. {% endblock %}
  123. </div><!-- /.col -->
  124. {% endblock %}
  125. </div><!-- /.row -->
  126. </div><!-- /.container-fluid -->
  127. </section>
  128. {% endblock %}
  129. <section class="content">
  130. <div class="container-fluid">
  131. {% block main %}{% endblock %}
  132. </div>
  133. </section>
  134. {% endblock %}
  135. </div>
  136. {% block footer %}
  137. {% set content_footer = block('content_footer') is defined ? block('content_footer') : '' %}
  138. <footer class="main-footer">
  139. <div class="float-right d-none d-sm-block">
  140. <b>SovBundle Version</b> 1.0
  141. </div>
  142. <strong>Copyright © {{ 'now'|date('Y') }} <a href="http://laclic.fr">La Clic</a>.</strong> All
  143. rights
  144. reserved.
  145. </footer>
  146. {% endblock %}
  147. {% endblock wrapper %}
  148. </div>
  149. {% endblock wrapper_wrapper %}
  150. {% block configured_javascripts %}
  151. {% for js_asset in ea.assets.jsFiles ?? [] %}
  152. <script src="{{ asset(js_asset) }}"></script>
  153. {% endfor %}
  154. {% for webpack_encore_entry in ea.assets.webpackEncoreAssets ?? [] %}
  155. {{ ea_call_function_if_exists('encore_entry_script_tags', webpack_encore_entry, null, '_default', {'defer': false}) }}
  156. {% endfor %}
  157. {% endblock %}
  158. {% block body_javascript %}{% endblock body_javascript %}
  159. {% block configured_body_contents %}
  160. {% for htmlContent in ea.assets.bodyContents ?? [] %}
  161. {{ htmlContent|raw }}
  162. {% endfor %}
  163. {% endblock %}
  164. {% include '@LcSov/adminlte/block/modal_filemanager.html.twig' %}
  165. {% if app.session is not null and app.session.started %}
  166. {% set flash_messages = app.session.flashbag.all %}
  167. {% if flash_messages|length > 0 %}
  168. <script type="text/javascript">
  169. $(document).ready(function () {
  170. {% for label, messages in flash_messages %}
  171. {% for message in messages %}
  172. SovNotification.add("{{ label }}", "{{ message|trans|raw|replace({'"': '\"'}) }}");
  173. {% endfor %}
  174. {% endfor %}
  175. });
  176. </script>
  177. {% endif %}
  178. {% endif %}
  179. {% block append_body %}{% endblock %}
  180. </body>
  181. {% endblock body %}
  182. </html>