src/hdalab/templates/editorial/folders.html
changeset 328 7040f6533c42
parent 327 3684db1579ff
child 335 51225e522007
--- a/src/hdalab/templates/editorial/folders.html	Wed Sep 03 16:43:52 2014 +0200
+++ b/src/hdalab/templates/editorial/folders.html	Wed Sep 03 17:22:23 2014 +0200
@@ -9,11 +9,11 @@
 {% endblock %}
 
 {% block main_content %}
-<p><a href="{% url 'add_or_update_folder' %}">Nouveau dossier</a></p>
+<p><a href="{% url 'hdalab_add_or_update_folder' %}">Nouveau dossier</a></p>
 <table>
     <tr class="border_bottom">
+        <th>Titre</th>
 	    <th>Url</th>
-	    <th>Titre</th>
 	    <th>Description</th>
 	    <th>Liste</th>
 	    <th>Éditer</th>
@@ -21,8 +21,8 @@
     </tr>
     {% for f in folders %}
     <tr class="border_bottom">
+        <td>{{f.title}}</td>
         <td><a href="{{f.url}}" title="{{f.url}}" target="_blank">{{f.url|short_url}}</a></td>
-        <td>{{f.title}}</td>
         <td>{{f.description}}</td>
         <td class="list"><ul>{% for d in f.datasheets.all %}<li>{{ d.title }}</li>{% endfor %}</ul></td>
         <td class="text_centered"><a href="{% url 'hdalab_add_or_update_folder' folder_pk=f.pk %}"><img src="{% static 'hdabo/img/pen.png' %}"/></a></td>