{% extends "common/base.html" %}{% load i18n %}{% load filters %}{% load tz %} {% block title %}{% trans "Edit the comment text" %}{% endblock %} {% block breadcrumbs %} home_ico / {% trans "Complaint text" %}{% endblock %} {% block jqueryui %} {% endblock %} {% block content %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% trans 'Name' %} {% trans 'Inventory number' %} ID
{{ item.name }} {% if item.inventory_number %}{{ item.inventory_number }}{% else %} {% trans 'Not a number' %}{% endif %} {{ item.pk }}
{% csrf_token %} {{ form.as_p }}
{% for com in comments %}
{{ com.comment }}
[x]
{{ com.author }}{% if debug %}{% else %}    {{ com.datetime|prettifydatetime|date:"SHORT_DATE_FORMAT" }} {{ com.datetime|prettifydatetime|timezone:current_time_zone|time:"TIME_FORMAT" }}{% endif %}
{% endfor %}
{% endblock %}