{% extends 'manager/base.html' %} {% load static %} {% load i18n %} {% block header.add_script %} {% endblock %} {% block sidebar.dashboard %} {% endblock %} {% block sidebar.resources %} class="active" {% endblock %} {% block content %}

{% trans "مدیریت محتوا" %}

{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
{% if resources_list %} {% for resource in resources_list %}
{% trans "ویرایش" %}
{{ resource.title }}
{% if resource.description %}

{{ resource.description }}

{% endif %}
{% if resource.type == 'video' %} {% trans "ویدیو" %} {% elif resource.type == 'pdf' %} {% trans "PDF" %} {% elif resource.type == 'image_series' %} {% trans "سری تصاویر" %} {% endif %} {{ resource.category.name }} {{ resource.view_count }} {% trans "بازدید" %}
{% if resource.is_published %} {% trans "منتشر شده" %} {% else %} {% trans "پیش‌نویس" %} {% endif %} {% if resource.is_featured %} {% trans "ویژه" %} {% endif %}
{% trans "ایجاد شده در:" %} {{ resource.created_at|date:"Y/m/d H:i" }} {% if resource.updated_at != resource.created_at %} | {% trans "آخرین ویرایش:" %} {{ resource.updated_at|date:"Y/m/d H:i" }} {% endif %}
{% endfor %} {% else %}

{% trans "هیچ محتوایی یافت نشد." %}

{% trans "ایجاد اولین محتوا" %}
{% endif %}
{% endblock %} {% block delete %} {% for resource in resources_list %} {% endfor %} {% endblock %} {% block script %} {% endblock %}