mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 06:27:24 +01:00
18 lines
321 B
Twig
18 lines
321 B
Twig
{% extends "law/law.html.twig" %}
|
|
{% block content %}
|
|
<h1>
|
|
{% trans %}
|
|
Law
|
|
{% endtrans %}
|
|
#
|
|
{{ law.id }}
|
|
</h1>
|
|
{% trans %}
|
|
Responsible for:
|
|
{% endtrans %}
|
|
<a href="{{ path('app_node_show',{'id':law.node.id})}}"> {% trans with {'%law.node.id%':law.node.id}%}
|
|
node #%law.node.id% {% endtrans %}
|
|
</a>
|
|
.
|
|
{% endblock %}
|