diff options
author | Filipp Lepalaan <filipp@mac.com> | 2021-05-19 21:03:02 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2021-05-19 21:03:02 +0300 |
commit | 26658c1d7437559f30d1503ba240b1e9b079a8d4 (patch) | |
tree | 5bc089f3f88b6816c2a8f2e9d380230282affee5 /servo/templates/orders | |
parent | 7126ba3b1270d59e1866d006f9da21955bf5ac4c (diff) | |
download | Servo-26658c1d7437559f30d1503ba240b1e9b079a8d4.tar.gz Servo-26658c1d7437559f30d1503ba240b1e9b079a8d4.tar.bz2 Servo-26658c1d7437559f30d1503ba240b1e9b079a8d4.zip |
Work authorization fixes
Diffstat (limited to 'servo/templates/orders')
-rwxr-xr-x | servo/templates/orders/print_confirmation.html | 16 |
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> |