{% extends "dashboard/base.html" %} {% load i18n static %} {% block title %}{% trans "About Us" %}{% endblock %} {% block content %}
{% trans "Manage the About Us content displayed on the website." %}
{% if about_us %}| {% 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" %} |