{% extends './base_site.html' %} {% block title %}{{ title }}{% endblock title %} {% block content %}

Accessory:

{% csrf_token %} {% for field in accessory_form.visible_fields %}
{{ field }}
{% for field in accessory_form.hidden_fields %} {{ field }} {% endfor %} {% endfor %}
Create Calibration:
{% csrf_token %} {% for field in calibration_form.visible_fields %}
{{ field }}
{% endfor %} {% for field in calibration_form.hidden_fields %} {{ field }} {% endfor %}

{% for calibration in calibrations %} {% endfor %}
ID Type Updated At Created At
{{ calibration.id }} {{ calibration.type }} {{ calibration.updated_at }} {{ calibration.created_at }}
{% endblock content %} {% block javascript %} {% endblock javascript %}