first table. Shows the content \o/
This commit is contained in:
parent
46e7e22cc9
commit
847b6bd7c3
|
@ -1,4 +1,27 @@
|
|||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
Hello World
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Top Level Domain</th>
|
||||
<th>Amount of NS servers</th>
|
||||
<th>IPv4 compatible NS servers</th>
|
||||
<th>IPv6 compatible NS servers</th>
|
||||
<th>Strongest DNSSEC algo available</th>
|
||||
<th>Amount of DNSSEC keys</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for TLD in object_list %}
|
||||
<tr>
|
||||
<td>{{ TLD.tld }}</td>
|
||||
<td>{{ TLD.nsamount }}</td>
|
||||
<td>{{ TLD.v4nsamount }}</td>
|
||||
<td>{{ TLD.v6nsamount }}</td>
|
||||
<td>{{ TLD.get_dnssec_display }}</td>
|
||||
<td>{{ TLD.amountofkeys }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
{% endblock content %}
|
||||
|
|
Loading…
Reference in a new issue