{% extends "wagtailadmin/base.html" %} {% load i18n static %} {% block titletag %} {% trans "SEO Metadata Templates" %} - {% trans "SEO Toolkit" %} {% endblock %} {% block extra_css %} {{ block.super }} {% endblock %} {% block extra_js %} {{ block.super }} {% endblock %} {% block content %}

{% trans "SEO Metadata Templates" %}

{% if templates %} {% for template in templates %} {% endfor %}
{% trans "Name" %} {% trans "Type" %} {% trans "Page Type" %} {% trans "Template Content" %} {% trans "Created" %} {% trans "Actions" %}
{{ template.name }} {{ template.get_template_type_display }} {% if template.content_type %} {{ template.content_type.name }} {% else %} {% trans "All Pages" %} {% endif %} {{ template.template_content|truncatechars:80 }} {{ template.created_at|date:"M d, Y" }} {% if template.created_by %}
by {{ template.created_by.get_full_name|default:template.created_by.username }} {% endif %}
{% trans "Edit" %}
{% else %}

{% trans "No templates found. Create your first template to get started!" %}

{% trans "Create Your First Template" %}
{% endif %}
{% endblock %}