From 81461b83ad015a0e78e670ec050b5c14a2e8f683 Mon Sep 17 00:00:00 2001 From: FSMPI Admin-Team <admin@fsmpi.rwth-aachen.de> Date: Sun, 5 Mar 2017 03:05:14 +0100 Subject: [PATCH] Show protocoltype for todos on index page --- templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.html b/templates/index.html index c7a1db7..461f743 100644 --- a/templates/index.html +++ b/templates/index.html @@ -30,7 +30,7 @@ <ul> {% if todos|length > 0 %} {% for todo in todos %} - <li>{{todo.render_html()|safe}}</li> + <li>{{todo.render_html()|safe}} ({{todo.protocoltype.name}})</li> {% endfor %} {% else %} <li>Keine Todos</li> -- GitLab