diff --git a/printer/templates/printer/newjob.html b/printer/templates/printer/newjob.html index 223ea481..73bdf3ac 100644 --- a/printer/templates/printer/newjob.html +++ b/printer/templates/printer/newjob.html @@ -15,21 +15,23 @@ {% bootstrap_formset_errors jobform %}
- {% for job in jobform.forms %} + {% for job in jobform.forms %}
{% massive_bootstrap_form job "" %}
{% endfor %}
-
- +
- {% bootstrap_button action_name name="Next" button_type="submit" icon="star" %} +
+ + {% bootstrap_button action_name button_type="submit" icon='ok' button_class='btn-success' %}
@@ -38,6 +40,7 @@ var template = `{% bootstrap_form jobform.empty_form %} ` function add_job() { diff --git a/printer/templates/printer/print.html b/printer/templates/printer/print.html index 6eb2384b..ad0b5016 100644 --- a/printer/templates/printer/print.html +++ b/printer/templates/printer/print.html @@ -16,10 +16,15 @@
{% for job in jobform.forms %}
+

Summary

+
{% trans "Filename : " %}{{ job.instance.filename }}
+
{% trans "Price for one copy : " %}{{ job.instance.price }} €
+
{% trans "Number of pages : " %}{{ job.instance.pages }}
+

Advanced options

{% massive_bootstrap_form job "" %}
{% endfor %}
- {% bootstrap_button action_name name="Print" button_type="submit" icon="star" %} + {% bootstrap_button action_name button_type="submit" icon="ok" button_class='btn-success' %} {% endblock %}