Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

225 linhas
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. {% if replace_content_with_message is defined %}
  132. <div class="alert alert-warning" role="alert">
  133. {{ replace_content_with_message }}
  134. </div>
  135. {% else %}
  136. {% block main %}{% endblock %}
  137. {% endif %}
  138. </div>
  139. </section>
  140. {% endblock %}
  141. </div>
  142. {% block footer %}
  143. {% set content_footer = block('content_footer') is defined ? block('content_footer') : '' %}
  144. <footer class="main-footer">
  145. <div class="float-right d-none d-sm-block">
  146. <b>SovBundle Version</b> 1.0
  147. </div>
  148. <strong>Copyright © {{ 'now'|date('Y') }} <a href="http://laclic.fr">La Clic</a>.</strong> All
  149. rights
  150. reserved.
  151. </footer>
  152. {% endblock %}
  153. {% endblock wrapper %}
  154. </div>
  155. {% endblock wrapper_wrapper %}
  156. {% block configured_javascripts %}
  157. {% for js_asset in ea.assets.jsFiles ?? [] %}
  158. <script src="{{ asset(js_asset) }}"></script>
  159. {% endfor %}
  160. {% for webpack_encore_entry in ea.assets.webpackEncoreAssets ?? [] %}
  161. {{ ea_call_function_if_exists('encore_entry_script_tags', webpack_encore_entry, null, '_default', {'defer': false}) }}
  162. {% endfor %}
  163. {% endblock %}
  164. {% block body_javascript %}{% endblock body_javascript %}
  165. {% block configured_body_contents %}
  166. {% for htmlContent in ea.assets.bodyContents ?? [] %}
  167. {{ htmlContent|raw }}
  168. {% endfor %}
  169. {% endblock %}
  170. {% include '@LcSov/adminlte/block/modal_filemanager.html.twig' %}
  171. {% if app.session is not null and app.session.started %}
  172. {% set flash_messages = app.session.flashbag.all %}
  173. {% if flash_messages|length > 0 %}
  174. <script type="text/javascript">
  175. $(document).ready(function () {
  176. {% for label, messages in flash_messages %}
  177. {% for message in messages %}
  178. SovNotification.add("{{ label }}", "{{ message|trans|raw|replace({'"': '\"'}) }}");
  179. {% endfor %}
  180. {% endfor %}
  181. });
  182. </script>
  183. {% endif %}
  184. {% endif %}
  185. {% block append_body %}{% endblock %}
  186. </body>
  187. {% endblock body %}
  188. </html>