{% extends 'base.html' %} {% block title %}Dashboard — DynDNS Manager{% endblock %} {% block content %}

Dashboard

{{ user_count }}
Benutzer gesamt
{{ subdomains|length }}
Subdomains
{{ subdomains|sum(attribute='update_count') }}
Updates gesamt
Subdomains & aktuelle IPs Verwalten
{% for s in subdomains %} {% else %} {% endfor %}
Hostname DynDNS-User Aktuelle IP Letztes Update Updates Status
{% if base_domain %}{{ s.subdomain }}.{{ base_domain }}{% else %}{{ s.subdomain }}{% endif %} {{ s.username }} {% if s.current_ip %} {{ s.current_ip }} {% else %} noch kein Update {% endif %} {{ s.last_updated or '—' }} {{ s.update_count }} {% if s.active %} Aktiv {% else %} Inaktiv {% endif %}
Noch keine Subdomains angelegt.
Letzte Updates
{% for l in logs %} {% else %} {% endfor %}
Zeit Benutzer Alte IP Neue IP Ergebnis
{{ l.timestamp }} {{ l.subdomain or '—' }} ({{ l.dyndns_username }}) {{ l.old_ip or '—' }} {{ l.new_ip }} {% if l.result == 'good' %} good {% else %} error {% endif %}
Keine Einträge.
{% endblock %}