From 85ef37bb43ce245f8df950ab6f9d1b87b0dec21e Mon Sep 17 00:00:00 2001 From: Piotr Gawron <piotr.gawron@uni.lu> Date: Wed, 13 Dec 2017 17:22:11 +0100 Subject: [PATCH] voucher list contain information about type --- smash/web/templates/vouchers/list.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/smash/web/templates/vouchers/list.html b/smash/web/templates/vouchers/list.html index 7a29b16f..d0f242e7 100644 --- a/smash/web/templates/vouchers/list.html +++ b/smash/web/templates/vouchers/list.html @@ -22,6 +22,7 @@ <thead> <tr> <th>Number</th> + <th>Type</th> <th>First name</th> <th>Last name</th> <th>Issue date</th> @@ -37,6 +38,7 @@ {% for voucher in vouchers %} <tr> <td>{{ voucher.number }}</td> + <td>{{ voucher.voucher_type }}</td> <td>{{ voucher.study_subject.subject.first_name }}</td> <td>{{ voucher.study_subject.subject.last_name }}</td> <td>{{ voucher.issue_date }}</td> -- GitLab