{% extends "_base.html" %} {% block title %}{{ object.name }} - MeshAdmin{% endblock %} {% block content %}
{% if object.is_lighthouse %} {% endif %} {% if object.is_relay %} {% endif %}
Last Config Refresh
{{ object.last_config_refresh|default:"Never" }}
Public IP/Hostname
{{ object.public_ip_or_hostname|default:"-" }}
Interface
{{ object.interface|default:"-" }}
Use Relay
{{ object.use_relay|yesno:"Yes,No" }}
Current Version {% if config %}
Generated {{ config.created_at|date:"Y-m-d H:i" }}
{{ config.sha256 }}
{% endif %}
Download
{% if config %}
{{ config.config }}
{% else %}

No configuration has been generated yet

{% endif %}
{% for config in config_history %}

Version from {{ config.created_at|date:"Y-m-d H:i" }}

{{ config.sha256 }}

{{ config.config }}
{% endfor %}
Select two versions to compare
{% endblock %}