blob: 686a12f8fd1b57a392997eecc4a1e046865cafcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% if latest_knowledge %}
<table class="listing">
{% for l in latest_knowledge %}
<tr>
<td class="date">
{{ l.date }}</td>
<td class="description">
<a href="/k/commit/{{ l.hash }}/" class="description">
{{ l.description|truncatewords:6 }}</a></td>
</tr>
{% endfor %}
</table>
{% else %}No shortlog!{% endif %}
|