Initial commit

This commit is contained in:
Crizomb 2025-06-28 12:17:52 +02:00
commit 3bc898dd10
130 changed files with 25918 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{# source: https://stackoverflow.com/a/65082524/1814910 #}
<ul>
{% for carte in field.value %}
{%- set url = ea_url()
.setController('App\\Controller\\Admin\\CarteFractalCrudController')
.setAction('detail')
.setEntityId(carte.id)
-%}
<li>
<a href="{{ url }}">
{{ carte }}
</a>
</li>
{% else %}
</ul>
<span class="badge badge-secondary">None</span>
<ul>
{% endfor %}
</ul>