{% extends 'base.html' %} {% load static %} {% load i18n %} {% block content %}
{{ object.title }}
{% trans 'User' %}:
{{ object.user_display }}
{% trans 'IP' %}:
{{ object.ip }}
{% trans 'Assignees' %}:
{{ object.assignees_display }}
{% trans 'Status' %}:
{% if object.status == "accpeted" %} {{ object.get_status_display }} {% endif %} {% if object.status == "rejected" %} {{ object.get_status_display }} {% endif %} {% if object.status == "pending" %} {{ object.get_status_display }} {% endif %}

{% trans 'City' %}:
{{ object.city }}
{% trans 'Assignee' %}:
{{ object.assignee_display | default_if_none:"" }}
{% trans 'Date created' %}:
{{ object.date_created }}
{% for comment in object.comments %}
image
{{ comment.user_display }} {{ comment.date_created|timesince}} {% trans 'ago' %}
{{ comment.date_created }}
{{ comment.body }}
{% endfor %}
{% endblock %} {% block custom_foot_js %} {% endblock %}