{% extends "base.html" %} {% load staticfiles %} {% load i18n %} {% load bootstrap3 %} {% load massive_bootstrap_form %} {% load static %} {% block title %}Printing interface{% endblock %} {% block content %}
{% csrf_token %}

{% trans "Printing Menu" %}

{{ jobform.management_form }} {% bootstrap_formset_errors jobform %}
{% for job in jobform.forms %}
{% bootstrap_form job label_class='sr-only' %}
{% endfor %}
{% bootstrap_button action_name button_type="submit" icon="star" %}
{% endblock %}