{# templates/dashboard/value_proposition_list.html #} {% extends "dashboard/base.html" %} {% load i18n static %} {% block title %}{% trans "Value propositions" %}{% endblock %} {% block content %}

{% trans "Value propositions" %}

{% trans "Add value proposition" %}

{% trans "Manage the key value propositions displayed on the website." %}

{% if value_propositions %}
{% for vp in value_propositions %} {% endfor %}
{% trans "Title" %} {% trans "Description" %} {% trans "Order" %} {% trans "Actions" %}
{{ vp.title }}
{{ vp.description|default:""|truncatechars:60 }}
{{ vp.sort_order }} {% trans "Edit" %} {% trans "Delete" %}
{% else %}
{% trans "No value propositions yet. Add one to get started." %}
{% endif %} {% endblock %}