{% extends "backoffice/moderation_base.html" %} {% load humanize %} {% load i18n %} {% load c3assemblies %} {% block content %}

Project "{{ object.name }}"

Metadaten
{% trans "Project__name" %}:
{{ object.name }}
{% trans "Assembly" %}:
{% if object.assembly %} {{ object.assembly.slug }} {% else %} -/- {% endif %}
{% trans "Owner" %}:
{% if object.owner %} {{ object.owner.slug }} {% else %} -/- {% endif %}
{% trans "Project__type" %}:
{% if project.assembly %} {% trans "AssemblyProject" %} {% else %} {% trans "SelfOrganizedProject" %} {% endif %}
{% trans "Project__state" %}:
{{ object.get_state_display }}
{% trans "Project__location" %}:
{{ object.location|default:"-" }}
{% trans "Project__description" %} (en)
{{ object.description_html_en|safe }}
{% trans "Project__description" %} (de)
{{ object.description_html_de|safe }}
{% if object.banner_image %}
{% trans "Project__image" %} [{{ object.banner_image_width }}x{{ object.banner_image_height }}px]
{% else %}
NO image
{% endif %}
{% trans "nav_moderation" %}
{% if object.is_public %} {% endif %} {% if object.blocked %} {% else %} {% endif %}
{% endblock content %}