line length

This commit is contained in:
Andreas Zweili 2022-04-04 10:26:27 +02:00
parent b36e606026
commit 735c0b2e6b
1 changed files with 6 additions and 2 deletions

View File

@ -8,14 +8,18 @@
<h4>Description</h4>
<div class="card-text"><p>{{ group.description }}</p></div>
<div class="card-text">
<p>Customer: <a href="{% url 'customer' group.customer.id %}">{{ group.customer }}</a></p>
<p>Customer: <a href="{% url 'customer' group.customer.id %}">
{{ group.customer }}
</a></p>
<table class="table table-bordered">
<tr>
<th>User</th>
</tr>
{% for user in users %}
<tr>
<td><a href="{% url 'user' user.id %}">{{ user }}</a></td>
<td><a href="{% url 'user' user.id %}">
{{ user }}
</a></td>
</tr>
{% endfor %}
</table>