ungleich-learning-circle/kjg/IPv6/ula/ularegistry/templates/index.html

15 lines
335 B
HTML
Raw Normal View History

<form action="" method="post">
{% csrf_token %}
{{ form }}
<input type="submit" value="registry">
</form>
{% if ips_list %}
<ul>
{% for ips in ips_list %}
<li><a href="/ularegistry/{{ ips.id }}/">{{ ips.inet }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>No polls are available.</p>
{% endif %}