projets
/
auf_savoirs_en_partage_django.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Listings
[auf_savoirs_en_partage_django.git]
/
auf_savoirs_en_partage
/
templates
/
savoirs
/
evenement_index.html
1
{% extends
"container_base.html"
%}
2
3
4
{% block contenu %}
5
<h4>
Agenda
</h4>
6
7
<div
class
=
"contenu-wrapper"
>
8
<table
id
=
"repertoire"
>
9
<tr>
10
<th>
Nom
</th>
11
</tr>
12
{% for e in evenements %}
13
<tr
class
=
"{% cycle 'odd' 'notodd' %}"
>
14
<td>
{{ e.summary.value|truncatewords:
12
}}
</td>
15
</tr>
16
{% endfor %}
17
</table>
18
</div>
19
20
{% endblock %}