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

15 lines
288 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 %}
2020-07-30 14:15:52 +00:00
<li>{{ ips.inet }}</li>
{% endfor %}
</ul>
{% else %}
2020-07-30 14:15:52 +00:00
<p>No registered IP.</p>
{% endif %}