{% extends "dashboard/base.html" %} {% load i18n static %} {% block title %}{% trans "Call to actions" %}{% endblock %} {% block content %}
{% trans "Manage call-to-action sections displayed on the website." %}
{% if call_to_actions %}| {% 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" %} |