{% load i18n %}{% load tz %}{% load filters %}{% load nums %}
{% if rw_ce %} {% trans 'Add repair' %} {% endif %}
{% for item in all_repairs_qs %} {% endfor %}
ID {% trans 'Date of failure detection' %} {% trans 'Who revealed' %} {% trans 'Repair description' %} {% trans 'Date sent for repair' %} {% trans 'Who sent' %} {% trans 'Date of return from repair' %} {% trans 'Who accepted' %} {% trans 'Repair cost' %}, {% trans 'Currency' %} {% trans 'Service organization' %}
{% if rw_ce %} {% endif %} {{ item.pk }} {% if item.date_breakdown_detection %}{{ item.date_breakdown_detection|timezone:current_time_zone|date:"SHORT_DATE_FORMAT"}} {{item.date_breakdown_detection|timezone:current_time_zone|time:"TIME_FORMAT" }}{% endif %} {% if item.who_found %}{{ item.who_found }}{% endif %} {% if item.description %}{{ item.description|safe }}{% endif %} {% if item.date_sent_for_repair %}{{item.date_sent_for_repair|timezone:current_time_zone|date:"SHORT_DATE_FORMAT"}} {{item.date_sent_for_repair|timezone:current_time_zone|time:"TIME_FORMAT"}}{% endif %} {% if item.who_sent %}{{ item.who_sent }}{% endif %} {% if item.date_of_return_from_repair %}{{ item.date_of_return_from_repair|timezone:current_time_zone|date:"SHORT_DATE_FORMAT" }} {{item.date_of_return_from_repair|timezone:current_time_zone|time:"TIME_FORMAT"}}{% endif %} {% if item.who_return %}{{ item.who_return }}{% endif %} {{ item.price|money }} {% if item.firm %}{{ item.firm.name }}{% endif %}