Added can_change_voucher to permission change UI

This commit is contained in:
Raphael Michel
2016-03-13 16:39:29 +01:00
parent 5ab78b4576
commit 0bff010ea0
2 changed files with 4 additions and 1 deletions

View File

@@ -18,6 +18,7 @@
<th>{% trans "View orders" %}</th>
<th>{% trans "Change orders" %}</th>
<th>{% trans "Change permissions" %}</th>
<th>{% trans "Change vouchers" %}</th>
<th>{% trans "Delete" %}</th>
</tr>
</thead>
@@ -30,6 +31,7 @@
<td>{{ form.can_view_orders }}</td>
<td>{{ form.can_change_orders }}</td>
<td>{{ form.can_change_permissions }}</td>
<td>{{ form.can_change_vouchers }}</td>
<td>{{ form.DELETE }}</td>
</tr>
{% endfor %}
@@ -46,6 +48,7 @@
<td>{{ add_form.can_view_orders }}</td>
<td>{{ add_form.can_change_orders }}</td>
<td>{{ add_form.can_change_permissions }}</td>
<td>{{ add_form.can_change_vouchers }}</td>
</tr>
</tbody>
</table>