I18n des menus

This commit is contained in:
Evarin 2018-10-14 16:29:26 +02:00
parent 1e3850bb6b
commit 128a9e32c0

View file

@ -1,9 +1,16 @@
{% load wagtailcore_tags i18n cofcms_tags %}
<ul class="menu">
{% for item in menu_items %}
<li class="{{ item.active_class }}">
<a href="{{ item.href }}">
{{ item.text }}
</a>
{% if item.link_page %}
<a href="{% pageurl item.link_page.specific %}">
{{ item.link_page.specific.title }}
</a>
{% else %}
<a href="{{ item.href }}">
{{ item.text }}
</a>
{% endif %}
</li>
{% endfor %}
</ul>