diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/todolists/view.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/todolists/view.html b/templates/todolists/view.html index fc4b29ea..b26cd91c 100644 --- a/templates/todolists/view.html +++ b/templates/todolists/view.html @@ -68,6 +68,7 @@ <th>Staging Version</th> <th>Maintainers</th> <th>Status</th> + <th>Last Touched By</th> </tr> </thead> <tbody> @@ -95,6 +96,7 @@ <span class="{{ pkg.status_css_class }}">{{ pkg.get_status_display }}</span> {% endif %} </td> + <td>{{ pkg.user|default:"" }}</td> </tr> {% endfor %} </tbody> |