{% extends "app/backend/base.html" %} {% load static %} {% block css %} {% endblock %} {% block content %}
{% if object.get_primary_image %} {% endif %}
{{ object.name }}
{{ object.iid }}

{{ object.description }}

Belohnung für Finder: {{ object.reward }} €

{% if object.status == -1 %}

Noch nicht freigeschaltet!

{% if request.user.is_superuser %} {% endif %} {% elif object.status == 0 %}

Nicht als gestohlen gemeldet.

{% elif object.status == 1 %}

Als gestohlen gemeldet!

{% elif object.status == 2 %}

Gegenstand verkauft

{% if request.user.is_superuser %} {% endif %} {% endif %} {% if request.user.is_superuser %} Benutzerprofil ansehen {% endif %}
{% if object.status == 1 %}

Aktueller Status

Als gestohlen gemeldet

Zeitpunkt: {{ object.stolen_on | date:'d.m.Y H:i' }}

Ort: {{ object.stolen_at }}

{% endif %}

Bilder

{% if not object.image_set.all %}Es wurden noch keine Bilder hinzugefügt!{% endif %}
{% for image in object.image_set.all %}
{{ image.description }}
{% endfor %}
{% endblock %} {% block scripts %}