List OS user in admin hosting package list

This commit is contained in:
Jan Dittberner 2023-04-22 13:16:13 +02:00
parent 806ee80a85
commit a136bcc52b
3 changed files with 32 additions and 17 deletions

View file

@ -10,6 +10,7 @@
<tr>
<th>{% translate "Name" %}</th>
<th>{% translate "Customer" %}</th>
<th>{% translate "OS User" %}</th>
<th>{% translate "Setup date" %}</th>
</tr>
</thead>
@ -20,6 +21,7 @@
<td>
<a href="{% url 'customer_dashboard' slug=package.customer.username %}">{{ package.customer }}</a>
</td>
<td>{{ package.osuser.username }}</td>
<td>{{ package.created }}</td>
</tr>
{% endfor %}