/usr/share/kcalendar/templates/default/journal.html is in libkf5calendarutils5 16.04.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | {% extends "template_base.html" %}
{% block body %}
{% with _("Journal") as type %}
{% include "incidence_header.html" %}
{% endwith %}
<table>
<!-- Calendar -->
{% if incidence.calendar %}
<tr>
<th>{% i18n "Calendar:" %}</th>
<td>{{ incidence.calendar }}</td>
</tr>
{% endif %}
<!-- Date -->
{% if incidence.date %}
<tr>
<th>{% i18n "Date:" %}</th>
<td>{{ incidence.date|kdate }}</td>
</tr>
{% endif %}
<!-- Description -->
{% if incidence.description %}
<tr>
<th>{% i18n "Description:" %}</th>
<td>{{ incidence.description|safe }}</td>
</tr>
{% endif %}
<!-- Categories -->
{% if incidence.categories %}
<tr>
<th>{% i18np "Category:" "Categories:" incidence.categories|length %}</th>
<td>{{ incidence.categories|join:", " }}</td>
</tr>
{% endif %}
</table>
<!-- Creation date -->
<p><em>{% i18n "Creation date: %1" incidence.creationDate|kdatetime %}</em></p>
{% endblock body %}
|