aboutsummaryrefslogtreecommitdiffstats
path: root/servo/templates/orders/products.html
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-12-05 13:01:00 +0200
committerFilipp Lepalaan <filipp@mac.com>2015-12-05 13:01:00 +0200
commitea3518103895ad380d531502e32b03edf14cde47 (patch)
tree32debd00109726c887143e89cb854987f8613e43 /servo/templates/orders/products.html
parent6d5964987eddfe9d4e3dbbcb0142420359259c35 (diff)
downloadServo-ea3518103895ad380d531502e32b03edf14cde47.tar.gz
Servo-ea3518103895ad380d531502e32b03edf14cde47.tar.bz2
Servo-ea3518103895ad380d531502e32b03edf14cde47.zip
Cleanup
Diffstat (limited to 'servo/templates/orders/products.html')
-rwxr-xr-xservo/templates/orders/products.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/servo/templates/orders/products.html b/servo/templates/orders/products.html
index e8185af..7088945 100755
--- a/servo/templates/orders/products.html
+++ b/servo/templates/orders/products.html
@@ -25,7 +25,7 @@
<strong><a href="{% url 'products-get_info' item.code order.location.pk %}" data-modal="#modal">{{ product.code }}</a></strong><br/>
<div>{{ item.title }}</div>
{% if item.sn or item.kbb_sn %}
- <p><small class="muted">{% trans "Serial Number" %}: {{ item.sn }}{% if item.kbb_sn %}, KBB: {{ item.kbb_sn }}{% endif %}</small></p>
+ <p><small class="muted">{% trans "Serial Number" %}: {{ item.sn|default:"-" }}{% if item.kbb_sn %}, KBB: {{ item.kbb_sn }}{% endif %}</small></p>
{% endif %}
{% if product.is_apple_part %}
{% for repair in order.get_repairs %}
@@ -57,11 +57,11 @@
<td style="width:125px">
{% if order.is_editable %}
<div class="btn-group">
- {% if item.should_report %}
+ {% if item.should_report %}
<a href="{% url 'orders-report_product' pk=order.id item_id=item.id %}" title="Toggle report flag" class="btn btn-small btn-success nofollow active" data-toggle="button"><i class="icon-ok"></i></a>
- {% else %}
+ {% else %}
<a href="{% url 'orders-report_product' pk=order.id item_id=item.id %}" title="Toggle report flag" class="btn btn-small btn-success nofollow" data-toggle="button"><i class="icon-ok icon-white"></i></a>
- {% endif %}
+ {% endif %}
</div>
<div class="btn-group">
<a href="{% url 'orders-edit_product' pk=order.id item_id=item.id %}" class="btn btn-small" title="{% trans "Edit" %}" data-modal="#modal"><i class="icon-pencil"></i></a>
@@ -95,7 +95,7 @@
{% endwith %}
<p class="clearfix">
<hr/>
- {% if order.serviceorderitem_set.count %}
+{% if order.serviceorderitem_set.count %}
<h3 class="pull-right">{% trans "Order Total" %}: <a href="#" class="tt" title="{{ order.net_total|currency }}">{{ order.gross_total|currency }}</a></h3>
- {% endif %}
+{% endif %}
</p>