mirror of https://gitlab.federez.net/re2o/re2o
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.0 KiB
30 lines
1.0 KiB
{% extends "base.html" %}
|
|
{% load staticfiles %}
|
|
{% load i18n %}
|
|
|
|
{% load bootstrap3 %}
|
|
{% load massive_bootstrap_form %}
|
|
{% load static %}
|
|
{% block title %}Printing interface{% endblock %}
|
|
|
|
{% block content %}
|
|
<form class="form" method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
<h3>{% trans "Confirm printing" %}</h3>
|
|
{{ jobform.management_form }}
|
|
{% bootstrap_formset_errors jobform %}
|
|
<div id="form_set" class="form-group container">
|
|
{% for job in jobform.forms %}
|
|
<div class="file_to_print col-xs-12 col-sm-4 col-md-3" style="margin-top:1em">
|
|
<h4>Summary</h4>
|
|
<h6>{% trans "Filename : " %}{{ job.instance.filename }}</h6>
|
|
<h6>{% trans "Price for one copy : " %}{{ job.instance.price }} €</h6>
|
|
<h6>{% trans "Number of pages : " %}{{ job.instance.pages }}</h6>
|
|
<h4>Advanced options</h4>
|
|
{% massive_bootstrap_form job "" %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% bootstrap_button action_name button_type="submit" icon="ok" button_class='btn-success' %}
|
|
</form>
|
|
{% endblock %}
|
|
|