{% extends "dashboard/base.html" %} {% load i18n %} {% block title %}{% trans "SEO Pages" %}{% endblock %} {% block content %}
{% trans "Manage the SEO pages shown on your website." %}
{% if seo_pages %}| {% 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." %} | ||||