Include created and last_updated fields

This commit is contained in:
Jeremy Stretch
2016-06-22 10:57:32 -04:00
parent cb5991d5a6
commit 338539e0d6
12 changed files with 92 additions and 12 deletions

View File

@@ -9,7 +9,7 @@
<div class="col-md-5">
<div class="panel panel-default">
<div class="panel-heading">
<strong>Details</strong>
<strong>Prefix</strong>
</div>
<table class="table table-hover panel-body">
<tr>
@@ -80,6 +80,14 @@
<td>IP Addresses</td>
<td><a href="{% url 'ipam:prefix_ipaddresses' pk=prefix.pk %}">{{ ipaddress_count }}</a></td>
</tr>
<tr>
<td>Created</td>
<td>{{ prefix.created }}</td>
</tr>
<tr>
<td>Last Updated</td>
<td>{{ prefix.last_updated }}</td>
</tr>
</table>
</div>
</div>