font weight for discount name

This commit is contained in:
Arvind Tiwari 2018-05-11 17:21:02 +05:30
parent 73e3dce8d4
commit a14407182f
2 changed files with 3 additions and 3 deletions

View file

@ -55,7 +55,7 @@
<div class="col-sm-6">
<p>
<span>{% trans "Cores" %}: </span>
<span class="pull-right">{{vm.cpu|floatformat}}</span>
<strong class="pull-right">{{vm.cpu|floatformat}}</strong>
</p>
<p>
<span>{% trans "Memory" %}: </span>
@ -79,7 +79,7 @@
{% if vm.discount.amount > 0 %}
<p class="text-primary">
{%trans "Discount" as discount_name %}
<span>{{ vm.discount.name|default:discount_name }}: </span>
<strong>{{ vm.discount.name|default:discount_name }}: </strong>
<strong class="pull-right">- {{ vm.discount.amount }} CHF</strong>
</p>
{% endif %}

View file

@ -141,7 +141,7 @@
{% if vm.discount.amount > 0 %}
<p class="text-primary">
{%trans "Discount" as discount_name %}
<span>{{ vm.discount.name|default:discount_name }}: </span>
<strong>{{ vm.discount.name|default:discount_name }}: </strong>
<strong class="pull-right">- {{ vm.discount.amount }} CHF</strong>
</p>
{% endif %}