diff --git a/smash/web/templates/vouchers/list.html b/smash/web/templates/vouchers/list.html
index 7a29b16f449daa5efa1baf27c23dc3d98d17c69e..d0f242e76cf2e0159b03cc12b22a8ece5c974f01 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>