diff options
author | Filipp Lepalaan <filipp@mac.com> | 2021-05-24 12:58:39 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2021-05-24 12:58:39 +0300 |
commit | d2394e47e6baed4f878103477862d1bcc27b816a (patch) | |
tree | 73a74876a08142ab7bcc5d081e39970db612a836 /servo/templates | |
parent | 9d8488a0fb4c6834223e8daa3dc384665b97f982 (diff) | |
download | Servo-d2394e47e6baed4f878103477862d1bcc27b816a.tar.gz Servo-d2394e47e6baed4f878103477862d1bcc27b816a.tar.bz2 Servo-d2394e47e6baed4f878103477862d1bcc27b816a.zip |
UI fixes
Diffstat (limited to 'servo/templates')
-rwxr-xr-x | servo/templates/products/list_rows.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/servo/templates/products/list_rows.html b/servo/templates/products/list_rows.html index c8cf5bb..ebaa733 100755 --- a/servo/templates/products/list_rows.html +++ b/servo/templates/products/list_rows.html @@ -8,12 +8,12 @@ <a href="{% url 'products-view_product' pk=p.pk group=group.slug %}"><strong>{{ p.code }}</strong></a><br/> {{ p.title }}<br/><small class="muted">{{ p.eee_code|default:""|addspace }}</small> </td> - <td data-value="{{ p.price_sales_stock|safe }}">{{ p.price_sales_stock|currency }}</td> - <td data-value="{{ p.price_sales_exchange|safe }}">{{ p.price_sales_exchange|currency }}</td> + <td data-value="{{ p.price_sales_stock|safe }}" title="{% trans 'Stocking Price' %}">{{ p.price_sales_stock|currency }}</td> + <td data-value="{{ p.price_sales_exchange|safe }}" title="{% trans 'Exchange Price' %}">{{ p.price_sales_exchange|currency }}</td> {% if p.is_service %} <td>∞</td> {% else %} - <td>{{ p|amount_in_location:request.user }}</td> + <td title="{% trans 'Amount at your current location' %}">{{ p|amount_in_location:request.user }}</td> {% endif %} <td> <div class="btn-group pull-right"> |