mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 03:13:12 +00:00
fix: Use bootstrap class for fa-check and fa-times color instead of hardcoded value
This commit is contained in:
parent
a2c0ab66f0
commit
fdb0b0b10f
2 changed files with 4 additions and 4 deletions
|
@ -73,9 +73,9 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
<td>{{ estimate.id }}</td>
|
<td>{{ estimate.id }}</td>
|
||||||
<td>
|
<td>
|
||||||
{% if estimate.final_invoice %}
|
{% if estimate.final_invoice %}
|
||||||
<a href="{% url 'cotisations:edit-custom-invoice' estimate.final_invoice.pk %}"><i style="color: #1ECA18;" class="fa fa-check"></i></a>
|
<a href="{% url 'cotisations:edit-custom-invoice' estimate.final_invoice.pk %}"><i class="fa fa-check text-success"></i></a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<i style="color: #D10115;" class="fa fa-times"></i>
|
<i class="fa fa-times text-danger"></i>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
|
|
@ -31,9 +31,9 @@ def tick(valeur, autoescape=False):
|
||||||
|
|
||||||
if isinstance(valeur, bool):
|
if isinstance(valeur, bool):
|
||||||
if valeur == True:
|
if valeur == True:
|
||||||
result = '<i style="color: #1ECA18;" class="fa fa-check"></i>'
|
result = '<i class="fa fa-check text-success"></i>'
|
||||||
else:
|
else:
|
||||||
result = '<i style="color: #D10115;" class="fa fa-times"></i>'
|
result = '<i class="fa fa-times text-danger"></i>'
|
||||||
return mark_safe(result)
|
return mark_safe(result)
|
||||||
|
|
||||||
else: # if the value is not a boolean, display it as if tick was not called
|
else: # if the value is not a boolean, display it as if tick was not called
|
||||||
|
|
Loading…
Reference in a new issue