{% extends "dashboard/base.html" %} {% load i18n static %} {% block title %}{% trans "Call to actions" %}{% endblock %} {% block content %}

{% trans "Call to actions" %}

{% trans "Add call to action" %}

{% trans "Manage call-to-action sections displayed on the website." %}

{% if call_to_actions %}
{% for cta in call_to_actions %} {% endfor %}
{% trans "Title" %} {% trans "Subtitle" %} {% trans "Status" %} {% trans "Actions" %}
{{ cta.title }}
{{ cta.subtitle|default:""|truncatechars:60}}
{% if cta.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %} {% trans "Edit" %} {% trans "Delete" %}
{% else %}
{% trans "No call to actions yet. Add one to get started." %}
{% endif %} {% endblock %}