8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-09-12 01:03:09 +00:00

Fix other font-awesome icons

This commit is contained in:
Alexandre Iooss 2018-09-19 17:11:52 +02:00 committed by Alexandre IOOSS
parent 2702bee918
commit 033c22bf1d
3 changed files with 9 additions and 9 deletions

View file

@ -81,7 +81,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
<li><a href="{% url 'machines:index' %}"><i class="fa fa-desktop"></i> {% trans "Manage the machines" %}</a></li>
{% acl_end %}
{% can_view_app cotisations %}
<li><a href="{% url 'cotisations:index' %}"><i class="fa fa-usd"></i> {% trans "Manage the subscriptions" %}</a></li>
<li><a href="{% url 'cotisations:index' %}"><i class="fa fa-eur"></i> {% trans "Manage the subscriptions" %}</a></li>
{% acl_end %}
</ul>
</li>

View file

@ -26,6 +26,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% trans "Edit" as tr_edit %}
<a class="btn btn-primary btn-sm" role="button" title="{{ desc|default:tr_edit }}" href="{% url href id %}">
<i class="fa fa-pencil-alt"></i>
<i class="fa fa-pencil"></i>
</a>

View file

@ -79,11 +79,11 @@ with this program; if not, write to the Free Software Foundation, Inc.,
<div class="col-sm-6 col-md-4">
<div class="panel panel-info">
<div class="panel-heading dashboard" data-parent="#accordion" data-toggle="collapse" data-target="#collapse4">
{{ users.solde }} <i class="fa fa-euro-sign"></i>
{{ users.solde }} <i class="fa fa-eur"></i>
</div>
<div class="panel-body dashboard">
<a class="btn btn-primary btn-sm" role="button" href="{% url 'cotisations:credit-solde' users.id %}">
<i class="fa fa-euro-sign"></i> {% trans "Refill the balance" %}
<i class="fa fa-eur"></i> {% trans "Refill the balance" %}
</a>
</div>
</div>
@ -240,7 +240,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
<td>{{ users.solde }} €
{% if user_solde %}
<a class="btn btn-primary btn-sm" style='float:right' role="button" href="{% url 'cotisations:credit-solde' users.pk%}">
<i class="fa fa-euro-sign"></i>
<i class="fa fa-eur"></i>
{% trans "Refill" %}
</a>
{% endif %}
@ -345,7 +345,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
<div class="panel panel-default">
<div class="panel-heading clearfix profil" data-parent="#accordion" data-toggle="collapse" data-target="#collapse4">
<h3 class="panel-title pull-left">
<i class="fa fa-euro-sign"></i>
<i class="fa fa-eur"></i>
{% trans "Subscriptions" %}
</h3>
</div>
@ -353,12 +353,12 @@ with this program; if not, write to the Free Software Foundation, Inc.,
<div class="panel-body">
{% can_create Facture %}
<a class="btn btn-primary btn-sm" role="button" href="{% url 'cotisations:new-facture' users.id %}">
<i class="fa fa-euro-sign"></i>
<i class="fa fa-eur"></i>
{% trans "Add as subscription" %}
</a>
{% if user_solde %}
<a class="btn btn-primary btn-sm" role="button" href="{% url 'cotisations:credit-solde' users.id %}">
<i class="fa fa-euro-sign"></i>
<i class="fa fa-eur"></i>
{% trans "Edit the balance" %}
</a>
{% endif%}
@ -433,7 +433,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
<div class="panel-body">
{% can_edit users %}
<a class="btn btn-primary btn-sm" role="button" href="{% url 'users:edit-email-settings' users.id %}">
<i class="fa fa-pencil-alt"></i>{% trans " Edit email settings" %}
<i class="fa fa-pencil"></i>{% trans " Edit email settings" %}
</a>
{% acl_end %}
</div>