{# templates/dashboard/hero_text_list.html #} {% extends "dashboard/base.html" %} {% load i18n static %} {% block title %}{% trans "Hero texts" %}{% endblock %} {% block content %}

{% trans "Hero texts" %}

{% trans "Add hero text" %}

{% trans "Manage hero section text and visuals displayed on the website." %}

{% if hero_texts %}
{% for h in hero_texts %} {% endfor %}
{% trans "Title" %} {% trans "Subtitle" %} {% trans "Priority" %} {% trans "Actions" %}
{{ h.title }}
{{ h.subtitle|default:""|truncatechars:60 }}
{{ h.priority }} {% trans "Edit" %} {% trans "Delete" %}
{% else %}
{% trans "No hero texts yet. Add one to get started." %}
{% endif %} {% endblock %}