{% extends "dashboard/base.html" %} {% load i18n %} {% block title %}{% trans "SEO Pages" %}{% endblock %} {% block content %}

{% trans "SEO Pages" %}

{% trans "Add SEO Page" %}

{% trans "Manage the SEO pages shown on your website." %}

{% if seo_pages %}
{% for item in seo_pages %} {% empty %} {% endfor %}
{% trans "Page" %} {% trans "SEO Title" %} {% trans "SEO Description" %} {% trans "Actions" %}
{{ item.get_page_display }}
{{ item.page }}
{% if item.seo_title %}
{{ item.seo_title }}
{% else %} - {% endif %}
{% if item.seo_description %}
{{ item.seo_description|truncatechars:40 }}
{% else %} - {% endif %}
{% trans "Edit" %} {% trans "Delete" %}
{% trans "No SEO pages yet." %}
{% else %}
{% trans "No SEO pages yet." %}
{% endif %} {% endblock %}