ipv6ula/ipv6ula/templates/ipv6ula/ula_list.html

61 lines
1.7 KiB
HTML

{% extends 'ipv6ula/base.html' %}
{% block content %}
<div class="container">
<div class="row">
<h1>Welcome to the IPv6 ULA registry</h1>
<p>
This is the new IPv6 ULA registry. It is inspired by the original
<a href="https://www.sixxs.net/tools/grh/ula/list/">ULA registry
from sixxs</a> and (will contain!) contains all of the prefixes
that were in the sixxs database.
</p>
<p>
While is is debatable whether or not there should be a ULA
registry at all, we at ungleich frequently were asked to provide a
ULA registry for those who don't have the resources to use global
unique addresses, but still want to indicate that a network is
used.
</p>
<p>
At <a href="https://ungleich.ch">ungleich</a>
we neither endorse nor condemn the use of ULA. Our objective is
to enable everyone everywhere with IPv6. In this regard we
hope that this ULA registry is enabling some additional people
to migrate to IPv6.
</p>
<p>
To login and submit prefixes you need to create an
<a href="https://account.ungleich.ch">ungleich account</a>.
</p>
</div>
<div class="row">
<table class="table table-striped">
<thead>
<tr>
<th>Prefix</th>
<th>Name</th>
<th>Organization</th>
<th>URL</th>
</tr>
</thead>
<tbody>
{% for ula in object_list %}
<tr>
<td>{{ ula.prefix }}</td>
<td>{{ ula.name }}</td>
<td>{{ ula.organization }}</td>
<td><a href="{{ ula.website }}">{{ ula.website }}</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
{% endblock %}