mirror of
https://codeberg.org/slatian/service.echoip-slatecave.git
synced 2024-12-28 04:28:23 +01:00
Added a button for Switching IP-Protocol in case someone has configured the addresses
This commit is contained in:
parent
9905b93c68
commit
02612dd490
@ -12,6 +12,11 @@ stylesheet = "/style.css"
|
|||||||
# favicon_mimetype = "image/png"
|
# favicon_mimetype = "image/png"
|
||||||
# favicon_mimetype = "image/jpeg"
|
# favicon_mimetype = "image/jpeg"
|
||||||
|
|
||||||
|
# Urls to look up v4 and v6 addresses explicitly
|
||||||
|
# If you have not configured them, comment them out, the button will stay hidden
|
||||||
|
v4_url="http://v4.localhost:3000/"
|
||||||
|
v6_url="http://v6.localhost:3000/"
|
||||||
|
|
||||||
[404]
|
[404]
|
||||||
# configure the 404 page, this is available for other pages too!
|
# configure the 404 page, this is available for other pages too!
|
||||||
title = "Nothing here"
|
title = "Nothing here"
|
||||||
|
@ -12,7 +12,15 @@
|
|||||||
{% block og_path %}/{% endblock %}
|
{% block og_path %}/{% endblock %}
|
||||||
|
|
||||||
{% block other_ip_button %}
|
{% block other_ip_button %}
|
||||||
<!-- TODO -->
|
{% if data.ressult.ip_info.is_v6_address %}
|
||||||
|
{% if extra.v4_url %}
|
||||||
|
<p class="button-paragraph"><a href="{{extra.v4_url}}">Look up your IPv4 address instead <small>(You'll get an error if you live in the future)</small></a></p>
|
||||||
|
{% endif %}
|
||||||
|
{% else %}
|
||||||
|
{% if extra.v6_url %}
|
||||||
|
<p class="button-paragraph"><a href="{{extra.v6_url}}">Look up your IPv6 address instead <small>(You'll get an error if you live in the past)</small></a></p>
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block extra_content %}
|
{% block extra_content %}
|
||||||
|
@ -24,8 +24,8 @@
|
|||||||
<dd>AS{{r.asn.asn}}</dd>
|
<dd>AS{{r.asn.asn}}</dd>
|
||||||
<dt>AS Name</dt>
|
<dt>AS Name</dt>
|
||||||
<dd>{{ r.asn.name }}</dd>
|
<dd>{{ r.asn.name }}</dd>
|
||||||
</dl>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
</dl>
|
||||||
{% block other_ip_button %}{% endblock %}
|
{% block other_ip_button %}{% endblock %}
|
||||||
</section>
|
</section>
|
||||||
{% if r.location %}
|
{% if r.location %}
|
||||||
|
Loading…
Reference in New Issue
Block a user