first table. Shows the content \o/

This commit is contained in:
Arnold Dechamps 2024-02-26 09:42:49 +01:00
parent 46e7e22cc9
commit 847b6bd7c3
No known key found for this signature in database
GPG key ID: AE66543374E41C89

View file

@ -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 %}