mirror of
https://codeberg.org/slatian/service.echoip-slatecave.git
synced 2025-07-16 14:03:28 +02:00
Made templates work with new data.
This commit is contained in:
16
templates/dns_resolver_list.html
Normal file
16
templates/dns_resolver_list.html
Normal file
@ -0,0 +1,16 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}List of DNS Servers{% endblock %}
|
||||
{% block h1 %}List of DNS Servers{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<section>
|
||||
<p>This is a list of DNS resolvers that are configured with this echoip service.</p>
|
||||
<ul class="link-list">
|
||||
{% for c in dns_resolvers %}
|
||||
<li><a href="{{ extra.base_url }}/dns_resolver/{{c.id}}">{{c.name}}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<p>The reasons for them being here range from them being popular, privacy friendly, interesting, don't take the a server listed here as endorsement.</p>
|
||||
</section>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user