Added description to Tenant model

This commit is contained in:
Jeremy Stretch
2016-07-26 17:44:32 -04:00
parent a73b0522f0
commit bf16715517
5 changed files with 41 additions and 4 deletions

View File

@@ -52,6 +52,16 @@
<a href="{{ tenant.group.get_absolute_url }}">{{ tenant.group }}</a>
</td>
</tr>
<tr>
<td>Description</td>
<td>
{% if tenant.description %}
{{ tenant.description }}
{% else %}
<span class="text-muted">N/A</span>
{% endif %}
</td>
</tr>
<tr>
<td>Created</td>
<td>{{ tenant.created }}</td>