hosts overview: create thead in same way as for domain overview (fixes small visual difference)

This commit is contained in:
Thomas Waldmann 2013-11-23 14:07:17 +01:00
parent ed074dd33b
commit 5624f3b95f

View File

@ -6,7 +6,14 @@
<div class="col-lg-12">
<h3>Your Hosts</h3>
<table class="table">
<tr><th>Host</th><th>IPv4 Address</th><th>IPv6 Address</th><th>Comment</th></tr>
<thead>
<tr>
<th>Host</th>
<th>IPv4 Address</th>
<th>IPv6 Address</th>
<th>Comment</th>
</tr>
</thead>
{% for host in hosts %}
<tr>
<td><a href="{% url 'host_view' host.pk %}"><b>{{ host.subdomain }}.{{ host.domain.domain }}</b></a></td>