{% extends "dashboard/base.html" %} {% load i18n static %} {% block title %}{% trans "About Us" %}{% endblock %} {% block content %}

{% trans "About Us" %}

{% trans "Add About Us" %}

{% trans "Manage the About Us content displayed on the website." %}

{% if about_us %}
{% for about in about_us %} {% endfor %}
{% trans "Title" %} {% trans "Content" %} {% trans "Active" %} {% trans "Actions" %}
{{ about.lead_title }}
{{ about.lead_content|safe|truncatechars:40 }}
{% if about.is_active %} {% trans "Yes" %} {% else %} {% trans "No" %} {% endif %} {% trans "Edit" %} {% trans "Delete" %}
{% else %}
{% trans "No About Us content yet. Add one to get started." %}
{% endif %} {% endblock %}