{% extends 'dashboard/base.html' %} {% load static %} {% block title %}SEO Settings Management - CMS Dashboard{% endblock %} {% block content %}

SEO Settings Management

Manage page-specific title tags, descriptions, keywords, Open Graph settings, and favicons for your public website.

{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
{% for page in pages_data %} {% endfor %}
Page Name Configuration Status Meta Title Meta Description Actions
{{ page.label }} {% if page.is_configured %} Configured {% else %} Not Configured {% endif %} {% if page.is_configured %} {{ page.setting.meta_title|truncatechars:45 }} {% else %} Using default fallback {% endif %} {% if page.is_configured %} {{ page.setting.meta_description|truncatechars:70 }} {% else %} Using site default fallback descriptions {% endif %}
{% endblock %}