diff options
| author | Le Jeune Yann <lj.yann@gmail.com> | 2011-03-01 14:18:31 +0100 |
|---|---|---|
| committer | Le Jeune Yann <lj.yann@gmail.com> | 2011-03-01 14:18:31 +0100 |
| commit | 91b3c742eeb60e845370cd4afa257b965b3600ab (patch) | |
| tree | 93da3a5b744be74cb599750a55b0578ef8fb14cd /ishtar | |
| parent | df77b7b296b6089b615955730e12f1bbd2a74f06 (diff) | |
| download | Ishtar-91b3c742eeb60e845370cd4afa257b965b3600ab.tar.bz2 Ishtar-91b3c742eeb60e845370cd4afa257b965b3600ab.zip | |
modif of sheet-ope proto template
Diffstat (limited to 'ishtar')
| -rw-r--r-- | ishtar/templates/sheet_ope.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ishtar/templates/sheet_ope.html b/ishtar/templates/sheet_ope.html index 37ddece93..f59babb70 100644 --- a/ishtar/templates/sheet_ope.html +++ b/ishtar/templates/sheet_ope.html @@ -97,6 +97,27 @@ {% endfor %} </table> +<h3>{% trans "Documentation"%}</h3> +<table> + <caption>{%trans "Documents"%}</caption> + <tr> + <th>{% trans "Title" %}</th> + <th>{% trans "Type" %}</th> + <th>{% trans "Authors" %}</th> + <th>{% trans "Localisation" %}</th> + </tr> + {% for doc in item.doc.all %} + <tr> + <td>{{ doc.title }}</td> + <td class='string'>{{doc.type}}</td> + <td>{{ doc.author.all|join:", " }}</td> + <td>{{ doc.localisation }}</td> + </tr> + {% empty %} + <tr><td colspan="4" class='no_items'>{% trans "No document associated to this operation" %}</td></tr> + {% endfor %} +</table> + <h3>{% trans "Recording Units"%}</h3> <table> <caption>{%trans "Recording Units"%}</caption> |
