aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2021-05-24 12:58:02 +0300
committerFilipp Lepalaan <filipp@mac.com>2021-05-24 12:58:02 +0300
commit1839bb4d129a5d484e3b32f07c7b50d6143f0dd4 (patch)
tree516032d6a43c96c9a882516c0a34875c021fd6f6
parent8dc99fdbe3ceb59a6e49b5038a44c073ec0a308c (diff)
downloadServo-1839bb4d129a5d484e3b32f07c7b50d6143f0dd4.tar.gz
Servo-1839bb4d129a5d484e3b32f07c7b50d6143f0dd4.tar.bz2
Servo-1839bb4d129a5d484e3b32f07c7b50d6143f0dd4.zip
Update print templates
-rwxr-xr-xservo/templates/orders/print_confirmation.html4
-rwxr-xr-xservo/templates/orders/print_dispatch.html20
-rwxr-xr-xservo/templates/orders/print_quote.html3
3 files changed, 24 insertions, 3 deletions
diff --git a/servo/templates/orders/print_confirmation.html b/servo/templates/orders/print_confirmation.html
index 4b61438..da8fd33 100755
--- a/servo/templates/orders/print_confirmation.html
+++ b/servo/templates/orders/print_confirmation.html
@@ -27,7 +27,9 @@
</div>
{% endwith %}
<div class="row">
- <div class="span12 text-center"><h3>{% block title %}{% trans "Work Authorization" %}{% endblock title %}</h3></div>
+ <div class="span12 text-center">
+ <h3>{% block title %}{% trans "Work Authorization" %}{% endblock title %}</h3>
+ </div>
</div>
<div class="row" style="margin-top:2em;margin-bottom:1em">
<div class="span6">
diff --git a/servo/templates/orders/print_dispatch.html b/servo/templates/orders/print_dispatch.html
index 003e03e..e2814bb 100755
--- a/servo/templates/orders/print_dispatch.html
+++ b/servo/templates/orders/print_dispatch.html
@@ -6,7 +6,7 @@
{% endblock title %}
{% block parts_and_services %}
-<h4>{% trans "Products and Services" %}</h4>
+<h4>{% trans "Parts and Services" %}</h4>
<table class="table">
<thead>
<tr>
@@ -32,6 +32,24 @@
</table>
{% endblock parts_and_services %}
+{% block customer_pickup %}
+ <h4>{% trans "Customer Pick-up" %}</h4>
+ <table class="table">
+ <tbody>
+ <tr>
+ <td style="width:40%">&nbsp;</td>
+ <td style="width:40%">&nbsp;</td>
+ <td style="width:20%">&nbsp;</td>
+ </tr>
+ <tr>
+ <td>{% trans "Customer Name" %}</td>
+ <td>{% trans "Signature" %}</td>
+ <td>{% trans "Date" %}</td>
+ </tr>
+ </tbody>
+ </table>
+{% endblock customer_pickup %}
+
{% block received_by %}
{% endblock received_by %}
diff --git a/servo/templates/orders/print_quote.html b/servo/templates/orders/print_quote.html
index 3c3a7d7..16db052 100755
--- a/servo/templates/orders/print_quote.html
+++ b/servo/templates/orders/print_quote.html
@@ -1,3 +1,4 @@
{% extends "orders/print_confirmation.html" %}
-
+{% load i18n %}
+{% block title %}{% trans "Cost Estimate" %} #{{ order.code }}{% endblock title %}
{% block tos %}{% endblock tos %}