cargo update

This commit is contained in:
Slatian
2025-03-20 00:04:34 +01:00
parent 38be0c05d0
commit d5c5d30d32
6 changed files with 259 additions and 173 deletions

View File

@ -12,6 +12,12 @@
{% block content %}
{% set r = data.result %}
{% if r.mapping %}
<section>
<h2>{{ r.mapping.strategy | title }} Mapping</h2>
<p>The address <code>{{ r.mapping.from_address }}</code> was automatically translated to <code>{{ r.mapping.to_address }}</code> using {{ r.mapping.strategy | title }}.</p>
</section>
{% endif %}
<section>
<h2>Network Information</h2>
<dl>

View File

@ -8,6 +8,13 @@
{% set r = data.result -%}
# {% block title %}Lookup {{ data.result.address }}{% endblock %}
{%- if r.mapping %}
## {{ r.mapping.strategy | title }} Mapping
The address {{ r.mapping.from_address }} was automatically translated to {{ r.mapping.to_address }} using {{ r.mapping.strategy | title }}.
{%- endif %}
## Network information
* Type of Address: {{ helper::ip_info(ip_info=r.ip_info) }}