src/hdalab/templates/base.html
changeset 301 3ec8fb1afed8
parent 293 b33caeba7faa
child 329 ea6268cf8c83
--- a/src/hdalab/templates/base.html	Mon Jul 21 17:44:56 2014 +0200
+++ b/src/hdalab/templates/base.html	Tue Jul 22 17:06:21 2014 +0200
@@ -19,22 +19,21 @@
 {% block js_import %}
         <script src="{% static 'hdalab/lib/jquery.min.js' %}"></script>
 {% endblock %}
-        
     </head>
     <body>
-
 {% block header %}
         <div id="header">
             <ul id="nav">
                 <li><a class="{% block home_actif %}{% endblock %}" href="{% url 'home'  %}">Accueil</a></li>
                 <li>&mdash;</li>
-                <li>Navigation par&nbsp;:</li>
                 <li><a class="{% block facettes_actif %}{% endblock %}" href="{% url 'facettes' %}">Facettes</a></li>
                 <li><a class="{% block categories_actif %}{% endblock %}" href="{% url 'categories' %}">Catégories de Wikipedia</a></li>
                 <li><a class="{% block thesaurus_actif %}{% endblock %}" href="{% url 'thesaurus' %}">Thésaurus</a></li>
                 <li>&mdash;</li>
+                <li><a class="{% block renkans_actif %}{% endblock %}" href="{% url 'renkan_public_list' %}">Renkans</a></li>
+                <li>&mdash;</li>
               {% if user.is_authenticated %}
-                <li><a href="{% url 'profile_home' %}">{{ user.username }}</a></li>
+                <li><a class="{% block profile_actif %}{% endblock %}"  href="{% url 'profile_home' %}">{{ user.username }}</a></li>
                 <li><a href="{% url 'logout' %}?next={% url 'home' %}">{% trans "Log out" %}</a></li>
               {% else %}
                 <li class="hello-user"><a href="{% url 'login' %}">{% trans "Log in" %}</a></li>
@@ -48,7 +47,6 @@
 {% endblock %}
 
 {% block main_content %}
-
 {% endblock %}
 
 {% block footer %}
@@ -71,6 +69,6 @@
             </ul>
         </div>
 {% endblock %}
-    {% analytics %}
+{% analytics %}
     </body>
 </html>