diff options
author | Filipp Lepalaan <filipp@mac.com> | 2015-09-30 02:08:19 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2015-09-30 02:08:19 +0300 |
commit | 4194e8ee556f3109057fab0afb7894927b52713e (patch) | |
tree | 996cb5de38706b07bb24f519d868b29da54c0b67 /servo/templates/orders | |
parent | 03326a06e12de1af575c8e4b2de7e3824f6eaace (diff) | |
download | Servo-4194e8ee556f3109057fab0afb7894927b52713e.tar.gz Servo-4194e8ee556f3109057fab0afb7894927b52713e.tar.bz2 Servo-4194e8ee556f3109057fab0afb7894927b52713e.zip |
Cleanup
Diffstat (limited to 'servo/templates/orders')
-rwxr-xr-x | servo/templates/orders/dispatch.html | 12 | ||||
-rwxr-xr-x | servo/templates/orders/notes.html | 2 | ||||
-rwxr-xr-x | servo/templates/orders/products.html | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/servo/templates/orders/dispatch.html b/servo/templates/orders/dispatch.html index f7ea0fb..41126c7 100755 --- a/servo/templates/orders/dispatch.html +++ b/servo/templates/orders/dispatch.html @@ -89,12 +89,12 @@ </tfoot> </table> </fieldset> - </div> - </div> - <div class="form-actions"> - <div class="pull-right"> - <a class="btn btn-default" href="{{ order.get_absolute_url }}">{% trans "Cancel" %}</a> - <button type="submit" class="btn btn-primary">{% trans "Dispatch" %}</button> + <div class="form-actions"> + <div class="pull-right"> + <a class="btn btn-default" href="{{ order.get_absolute_url }}">{% trans "Cancel" %}</a> + <button type="submit" class="btn btn-primary">{% trans "Dispatch" %}</button> + </div> + </div> </div> </div> </form> diff --git a/servo/templates/orders/notes.html b/servo/templates/orders/notes.html index 06cc61d..0e59e81 100755 --- a/servo/templates/orders/notes.html +++ b/servo/templates/orders/notes.html @@ -5,7 +5,7 @@ {% if not order.notes %} <div class="row-fluid"> - <div class="span12 well empty"><h3 class="muted">{% trans "Order doesn't contain any notes." %}</h3></div> + <div class="span12 well empty"><h3 class="muted">{% trans "Order doesn't contain any notes" %}</h3></div> </div> {% endif %} diff --git a/servo/templates/orders/products.html b/servo/templates/orders/products.html index 72540ab..e8185af 100755 --- a/servo/templates/orders/products.html +++ b/servo/templates/orders/products.html @@ -83,7 +83,7 @@ {% endwith %} {% empty %} <div class="row-fluid"> - <div class="span12 well empty"><h3 class="muted">{% trans "Order doesn't contain any products." %}</h3></div> + <div class="span12 well empty"><h3 class="muted">{% trans "Order doesn't contain any products" %}</h3></div> </div> {% endfor %} </tbody> |