diff options
Diffstat (limited to 'bn_django/templates/newknowldge_table')
-rw-r--r-- | bn_django/templates/newknowldge_table | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/bn_django/templates/newknowldge_table b/bn_django/templates/newknowldge_table new file mode 100644 index 0000000..686a12f --- /dev/null +++ b/bn_django/templates/newknowldge_table @@ -0,0 +1,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 %} |