mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-21 09:44:23 +00:00
24 lines
675 B
Twig
24 lines
675 B
Twig
{% extends "@ChillPerson/Person/layout.html.twig" %}
|
|
|
|
{% set activeRouteKey = 'chill_person_resource_edit' %}
|
|
|
|
{% block js %}
|
|
{{ encore_entry_script_tags('page_person_resource_showhide_input') }}
|
|
{{ encore_entry_script_tags('mod_pickentity_type') }}
|
|
{% endblock %}
|
|
|
|
{% block css %}
|
|
{{ encore_entry_link_tags('page_person_resource_showhide_input') }}
|
|
{{ encore_entry_link_tags('mod_pickentity_type') }}
|
|
{% endblock %}
|
|
|
|
{% block title %}{{ 'edit resource'|trans|capitalize }}{% endblock %}
|
|
|
|
{% block personcontent %}
|
|
|
|
<h1 style="margin-bottom: 2rem;">{{ 'edit resource'|trans }}</h1>
|
|
|
|
{% include "@ChillPerson/PersonResource/form.html.twig" %}
|
|
|
|
{% endblock %}
|