{% extends "default.html" %} {% load static %} {% load servo_tags %} {% load i18n %} {% block content %}
{% csrf_token %} {{ repair_form.device }} {{ device.description }}

{{ device.get_warranty_status_display }}
{{ device.configuration }}
{{ device.sn }}


{% trans "Parts" %}

{% trans "Checking warranty" %}...


{% trans "Total" %}: {{ order.gross_total|currency }}
{% include "form_field_snippet.html" with field=repair_form.symptom %} {% include "form_field_snippet.html" with field=repair_form.diagnosis %}
{% include "form_field_snippet.html" with field=repair_form.symptom_code %}
{% include "form_field_snippet.html" with field=repair_form.issue_code %}
{% include "form_field_snippet.html" with field=repair_form.tech_id %}
{% include "form_field_snippet.html" with field=repair_form.notes %} {% include "form_field_snippet.html" with field=repair_form.request_review %} {% include "form_field_snippet.html" with field=repair_form.unit_received_at %} {% include "form_field_snippet.html" with field=repair_form.attachment %} {% include "form_field_snippet.html" with field=repair_form.reference %} {% include "form_field_snippet.html" with field=repair_form.consumer_law %} {% include "form_field_snippet.html" with field=repair_form.acplus %} {% if repair.can_mark_complete %} {% include "form_field_snippet.html" with field=repair_form.replacement_sn %} {% include "form_field_snippet.html" with field=repair_form.mark_complete %} {% endif %}
{% include "form_snippet.html" with form=customer_form %}
{% include "form_snippet.html" with form=component_form %}
{% if repair.pk %} {% trans "Delete" %} {% endif %}
{% endblock content %} {% block crumbs %}
  • {{ order.get_queue_title }} /
  • {% trans "Order" %} {{ order.code }}
  • {% endblock crumbs %} {% block media %} {{ repair_form.media }} {% endblock media %}