{% extends "admin/base.html" %} {% block title %}Redirect Management - Focomy{% endblock %} {% block header_title %}Redirect Management{% endblock %} {% block content %}

URL Redirects

{{ redirects | length }} rules
{% if message %}
{{ message }}
{% endif %} {% if redirects %}
{% for redirect in redirects %} {% endfor %}
From To Code Type Status Actions
{{ redirect.from_path }} {{ redirect.to_path[:50] }}{% if redirect.to_path | length > 50 %}...{% endif %} {{ redirect.status_code }} {{ redirect.match_type }} {% if redirect.is_active %} Active {% else %} Inactive {% endif %}
{% else %}

No redirect rules configured.

Click "Add Redirect" to create a new rule.

{% endif %}

Usage Tips

{% endblock %}