File indexing completed on 2024-11-24 04:42:52
0001 {% extends ":/template_base.html" %} 0002 0003 0004 {% block body %} 0005 {% with _("Journal") as type %} 0006 {% include ":/incidence_header.html" %} 0007 {% endwith %} 0008 0009 <table> 0010 0011 <!-- Calendar --> 0012 {% if incidence.calendar %} 0013 <tr> 0014 <th>{% i18n "Calendar:" %}</th> 0015 <td>{{ incidence.calendar }}</td> 0016 </tr> 0017 {% endif %} 0018 0019 <!-- Date --> 0020 {% if incidence.date %} 0021 <tr> 0022 <th valign="top">{% i18n "Date:" %}</th> 0023 <td>{{ incidence.date|kdate }}</td> 0024 </tr> 0025 {% endif %} 0026 0027 <!-- Description --> 0028 {% if incidence.description %} 0029 <tr> 0030 <th valign="top">{% i18n "Description:" %}</th> 0031 <td>{{ incidence.description|safe }}</td> 0032 </tr> 0033 {% endif %} 0034 0035 <!-- Categories --> 0036 {% if incidence.categories %} 0037 <tr> 0038 <th>{% i18np "Tag:" "Tags:" incidence.categories|length %}</th> 0039 <td>{{ incidence.categories|join:", " }}</td> 0040 </tr> 0041 {% endif %} 0042 0043 </table> 0044 0045 <!-- Creation date --> 0046 <p><em>{% i18n "Creation date: %1" incidence.creationDate|kdatetime %}</em></p> 0047 0048 {% endblock body %}