{% extends "checkin/index.html" %} {% load servo_tags %} {% load bootstrap3 %} {% load i18n %} {% block main %} {% comment %}
{% endcomment %}
{% csrf_token %}
{% include "checkin/device_form.html" %}
{% include "checkin/customer_form.html" %}
{% if request.user.is_authenticated and tags %}
{% for t in tags %}
{% endfor %}
{% endif %}
{% bootstrap_field issue_form.issue_description %} {% bootstrap_field issue_form.notes %} {% bootstrap_field device_form.condition %}
{% if questions %} {% bootstrap_field device_form.pop %} {% for q in questions %} {% endfor %}
{% trans "Yes" %} {% trans "No" %}
{{ q }}

{{ q.description }}

{% endif %} {% bootstrap_field customer_form.checkin_location %} {% bootstrap_field customer_form.checkout_location %} {% if request.user.is_authenticated %} {% bootstrap_field device_form.queue %} {% endif %}

{% buttons %} {% if not request.user.is_authenticated %} {% bootstrap_field customer_form.agree_to_terms %} {% endif %} {% if request.user.is_authenticated %} {% else %} {% endif %} {% endbuttons %}
{% endblock main %}