You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

115 lines
3.3KB

  1. {# @var ea \EasyCorp\Bundle\EasyAdminBundle\Context\AdminContext #}
  2. {# @var entity \EasyCorp\Bundle\EasyAdminBundle\Dto\EntityDto #}
  3. {% extends ea.templatePath('layout') %}
  4. {% if ea.crud.currentAction == 'new' %}
  5. {% set form = new_form %}
  6. {% set body_id = 'ea-new-' ~translation_entity_name ~ '-' ~ entity.primaryKeyValue %}
  7. {% set body_class = 'ea-new ea-new-' ~ translation_entity_name %}
  8. {% set content_title = 'new'|sov_trans_admin_title(translation_entity_name) %}
  9. {% elseif ea.crud.currentAction == 'edit' %}
  10. {% set form = edit_form %}
  11. {% set body_id = 'ea-edit-' ~ translation_entity_name ~ '-' ~ entity.primaryKeyValue %}
  12. {% set body_class = 'ea-edit ea-edit-' ~ translation_entity_name %}
  13. {% set content_title = 'edit'|sov_trans_admin_title(translation_entity_name, {id: ea.getEntity().getInstance().getId()}) %}
  14. {% endif %}
  15. {% form_theme form with ea.crud.formThemes only %}
  16. {% trans_default_domain ea.i18n.translationDomain %}
  17. {% block body_id body_id %}
  18. {% block body_class body_class %}
  19. {% block content_title %}
  20. {{ content_title }}
  21. {% endblock %}
  22. {% block configured_head_contents %}
  23. {{ parent() }}
  24. {% for htmlContent in form.vars.ea_crud_form.assets.headContents %}
  25. {{ htmlContent|raw }}
  26. {% endfor %}
  27. {% endblock %}
  28. {% block configured_stylesheets %}
  29. {{ parent() }}
  30. {% for css_asset in form.vars.ea_crud_form.assets.cssAssets %}
  31. <link rel="stylesheet" href="{{ asset(css_asset) }}">
  32. {% endfor %}
  33. {% for webpack_encore_entry in form.vars.ea_crud_form.assets.webpackEncoreAssets %}
  34. {{ ea_call_function_if_exists('encore_entry_link_tags', webpack_encore_entry) }}
  35. {% endfor %}
  36. {% endblock %}
  37. {% block configured_javascripts %}
  38. {{ parent() }}
  39. {% for js_asset in form.vars.ea_crud_form.assets.jsAssets %}
  40. <script src="{{ asset(js_asset) }}"></script>
  41. {% endfor %}
  42. <script type="text/javascript">
  43. var CKEDITOR_BASEPATH = "{{ ckeditor_base_path("/bundles/fosckeditor/") }}";
  44. </script>
  45. <script type="text/javascript" src="{{ asset('bundles/fosckeditor/ckeditor.js') }}"></script>
  46. {% for webpack_encore_entry in form.vars.ea_crud_form.assets.webpackEncoreAssets %}
  47. {{ ea_call_function_if_exists('encore_entry_script_tags', webpack_encore_entry) }}
  48. {% endfor %}
  49. {% endblock %}
  50. {% block page_actions_wrapper %}
  51. {% endblock page_actions_wrapper %}
  52. {% block main %}
  53. <div class="col-8">
  54. {% block form %}
  55. {{ form(form) }}
  56. {% endblock form %}
  57. </div>
  58. <div class="col-4">
  59. {% block aside %}
  60. {% endblock aside %}
  61. </div>
  62. {% block form_footer %}
  63. {% embed '@LcSov/adminlte/embed/form_footer.html.twig' %}
  64. {% block width %}8{% endblock %}
  65. {% block content %}
  66. {% for action in entity.actions %}
  67. {{ include(action.templatePath, { action: action }, with_context = false) }}&nbsp;
  68. {% endfor %}
  69. {% endblock %}
  70. {% endembed %}
  71. {% endblock form_footer %}
  72. {% block delete_form %}
  73. {% if ea.crud.currentAction == 'edit' %}
  74. {{ include('@EasyAdmin/crud/includes/_delete_form.html.twig', { entity_id: entity.primaryKeyValue }, with_context = false) }}
  75. {% endif %}
  76. {% endblock delete_form %}
  77. {% endblock %}