]> git.parisson.com Git - mezzo.git/commitdiff
Change the "back" title of nav tree
authorJérémy Fabre <Jeremy@iMac-de-Jeremy.local>
Tue, 8 Nov 2016 10:34:37 +0000 (11:34 +0100)
committerJérémy Fabre <Jeremy@iMac-de-Jeremy.local>
Tue, 8 Nov 2016 10:34:37 +0000 (11:34 +0100)
app/templates/pages/menus/current_tree_primary.html
app/templates/pages/menus/current_tree_secondary.html

index 8011bee26ba34ada95e2fb625c904fb32df4a206..0e2abb9bbca84499f88dc7c6a039e483dee984a8 100644 (file)
@@ -11,7 +11,7 @@
                 {% if page.in_menu and page.has_children_in_menu %}
                     {% if page.is_primary and page.is_current_or_ascendant %}
                         <li class="nav-tree__item">
-                            <a class="nav-tree__link{% if page.is_current %} active{% endif %}" href="{{ page.get_absolute_url }}">{% trans 'Accueil' %}</a>
+                            <a class="nav-tree__link{% if page.is_current %} active{% endif %}" href="{{ page.get_absolute_url }}">{% trans 'Home' %}</a>
                         </li>
                     {% endif %}
                     {% if page.is_current_or_ascendant %}
index 4b424a0b702b32c59da34e79f58780a4ea06e1c7..a7de2a8abf8aab27a3019f083fabf6bda694e6bd 100644 (file)
@@ -28,7 +28,7 @@
         {% for page in page_branch %}
             {% if page.is_current_or_ascendant and page.has_children_in_menu %}
                 <li class="nav-tree__item">
-                    <a class="nav-tree__link" href="{{ page.get_absolute_url }}">{% trans 'Accueil' %}</a>
+                    <a class="nav-tree__link" href="{{ page.get_absolute_url }}">{% trans 'Home' %}</a>
                 </li>
                 {% page_menu page %}
             {% endif %}