{% extends 'core/base.html' %} {% block title %}IP Control | Killian{% endblock %} {% block content %}
Manage IPv4 and IPv6 allow and block rules for Killian access.
{{ current_ip|default:'Unknown' }}
{{ rule.network }}
{% if not rule.enabled %}
Disabled
{% elif rule.expires_at and rule.expires_at <= now %}
Expired
{% else %}
Active
{% endif %}
{% if rule.expires_at %}
{{ rule.expires_at|date:'Y-m-d H:i' }}
{% else %}
Never
{% endif %}
{{ rule.match_count }}
{% if rule.last_matched_at %}
{{ rule.last_matched_at|date:'Y-m-d H:i:s' }}
{% else %}
—
{% endif %}
{{ rule.created_by|default:'System' }}
{{ rule.reason|default:'—'|truncatewords:8 }}
Edit
Delete
Add a Block or Allow rule to begin controlling access.