1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

A bit of cosmetic cleanup from #1672

This commit is contained in:
Jeremy Stretch
2017-11-15 14:06:58 -05:00
parent 81852de1fa
commit e56797737d
2 changed files with 8 additions and 2 deletions

View File

@@ -240,7 +240,13 @@
{% for resv in reservations %}
<tr>
<td>{{ resv.unit_list }}</td>
<td>{{ resv.tenant }}</td>
<td>
{% if resv.tenant %}
<a href="{{ resv.tenant.get_absolute_url }}">{{ resv.tenant }}</a>
{% else %}
<span class="text-muted">None</span>
{% endif %}
</td>
<td>
{{ resv.description }}<br />
<small>{{ resv.user }} &middot; {{ resv.created }}</small>