diff -r 108fd2717177 -r 3ec8fb1afed8 src/hdalab/templates/renkan_list.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/hdalab/templates/renkan_list.html Tue Jul 22 17:06:21 2014 +0200 @@ -0,0 +1,52 @@ +{% extends "base.html" %} +{% load i18n %} +{% load static %} +{% load thumbnail %} + +{% block title %}{{block.super}} > Liste des Renkans publiques{% endblock %} + +{% block css_import %} +{{block.super}} + + + +{% endblock %} + +{% block js_import %} +{{block.super}} + + + +{% endblock %} + +{% block renkans_actif %}actif{% endblock %} + +{% block main_content %} +

Liste des renkans publiques

+ + + + + + {% for hr in renkan_list %} + {% with hr.renkan as r %} + + + + + + + + {% endwith %} + {% endfor %} + +
NomDate de modificationPreviewStatutActions
{{ r.title }} ({{ r.id }}){{ r.modification_date|date:"Y-m-d H:i" }}{% thumbnail r.image 100x100 as thumb %}{{ hr.state }} + + +
+{% endblock %} \ No newline at end of file