aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2021-05-19 21:03:02 +0300
committerFilipp Lepalaan <filipp@mac.com>2021-05-19 21:03:02 +0300
commit26658c1d7437559f30d1503ba240b1e9b079a8d4 (patch)
tree5bc089f3f88b6816c2a8f2e9d380230282affee5
parent7126ba3b1270d59e1866d006f9da21955bf5ac4c (diff)
downloadServo-26658c1d7437559f30d1503ba240b1e9b079a8d4.tar.gz
Servo-26658c1d7437559f30d1503ba240b1e9b079a8d4.tar.bz2
Servo-26658c1d7437559f30d1503ba240b1e9b079a8d4.zip
Work authorization fixes
-rwxr-xr-xservo/templates/orders/print_confirmation.html16
1 files changed, 9 insertions, 7 deletions
diff --git a/servo/templates/orders/print_confirmation.html b/servo/templates/orders/print_confirmation.html
index 6822e06..0a9cd9a 100755
--- a/servo/templates/orders/print_confirmation.html
+++ b/servo/templates/orders/print_confirmation.html
@@ -9,16 +9,18 @@
<div class="row">
<div class="span6">
{% if conf.company_logo %}
- <img src="{% get_media_prefix %}{{ conf.company_logo }}" alt="logo" title="logo" class="media-object pull-left span2" style="margin:10px"/><br/>
+ <img src="{% get_media_prefix %}{{ conf.company_logo }}" alt="logo" title="logo" class="media-object pull-left span2" style="margin:10px"/>
{% endif %}
- <b>{{ location.title }}</b><br/>
- {{ location.address }}<br/>
- {{ location.zip_code }}, {{ location.city }}
- {{ location.email }}<br/>
- {{ location.phone }}
+ <p>
+ <b>{{ location.title }}</b><br/>
+ {{ location.address }}<br/>
+ {{ location.zip_code }}, {{ location.city }}<br/>
+ {{ location.email }}<br/>
+ {{ location.phone }}
+ </p>
</div>
<div class="span6">
- <blockquote>{{ location.notes }}</blockquote>
+ <p style="white-space: pre-wrap;">{{ location.notes }}</p>
{% block location_info %}
{% endblock location_info %}
</div>