There was an error while loading. Please reload this page.
1 parent 61f7ddc commit 2879804Copy full SHA for 2879804
1 file changed
templates/todolists/view.html
@@ -2,6 +2,7 @@
2
{% load static %}
3
{% load package_extras %}
4
{% load todolists %}
5
+{% load humanize %}
6
7
{% block title %}Arch Linux - Todo: {{ list.name }}{% endblock %}
8
@@ -103,7 +104,11 @@ <h3>Filter Todo List Packages</h3>
103
104
<span class="{{ pkg.status_css_class }}">{{ pkg.get_status_display }}</span>
105
{% endif %}
106
</td>
- <td>{{ pkg.user|default:"" }}</td>
107
+ <td>
108
+ {% if pkg.user %}
109
+ {{ pkg.user }} <span title="{{ pkg.last_modified|date:"Y-m-d H:i T" }}">({{ pkg.last_modified|naturaltime }})</span>
110
+ {% endif %}
111
+ </td>
112
</tr>
113
{% endfor %}
114
</tbody>
0 commit comments