[CHANGE] Switched from Glyphicons to Font Awesome icons

This commit is contained in:
Peter Pfeufer 2023-12-01 12:56:22 +01:00
parent e14a295ce6
commit 398a980fb5
No known key found for this signature in database
GPG Key ID: 6051D2C6AD4EBC27
2 changed files with 6 additions and 6 deletions

View File

@ -48,12 +48,12 @@
</td> </td>
<td class="text-center"> <td class="text-center">
<a href="{% url 'hrapplications:personal_view' personal_app.id %}" class="btn btn-primary"> <a href="{% url 'hrapplications:personal_view' personal_app.id %}" class="btn btn-primary">
<span class="glyphicon glyphicon-eye-open"></span> <i class="fa-solid fa-eye"></i>
</a> </a>
{% if personal_app.approved == None %} {% if personal_app.approved == None %}
<a href="{% url 'hrapplications:personal_removal' personal_app.id %}" class="btn btn-danger"> <a href="{% url 'hrapplications:personal_removal' personal_app.id %}" class="btn btn-danger">
<span class="glyphicon glyphicon-remove"></span> <i class="fa-solid fa-trash"></i>
</a> </a>
{% endif %} {% endif %}
</td> </td>
@ -113,7 +113,7 @@
</td> </td>
<td class="text-center"> <td class="text-center">
<a href="{% url 'hrapplications:view' app.id %}" class="btn btn-primary"> <a href="{% url 'hrapplications:view' app.id %}" class="btn btn-primary">
<span class="glyphicon glyphicon-eye-open"></span> <i class="fa-solid fa-eye"></i>
</a> </a>
</td> </td>
</tr> </tr>
@ -159,12 +159,12 @@
</td> </td>
<td class="text-center"> <td class="text-center">
<a href="{% url 'hrapplications:view' app.id %}" class="btn btn-primary"> <a href="{% url 'hrapplications:view' app.id %}" class="btn btn-primary">
<span class="glyphicon glyphicon-eye-open"></span> <i class="fa-solid fa-eye"></i>
</a> </a>
{% if perms.hrapplications.delete_application %} {% if perms.hrapplications.delete_application %}
<a href="{% url 'hrapplications:remove' app.id %}" class="btn btn-danger"> <a href="{% url 'hrapplications:remove' app.id %}" class="btn btn-danger">
<span class="glyphicon glyphicon-remove"></span> <i class="fa-solid fa-trash"></i>
</a> </a>
{% endif %} {% endif %}
</td> </td>

View File

@ -49,7 +49,7 @@
</td> </td>
<td class="text-center"> <td class="text-center">
<a href="{% url 'hrapplications:view' app.id %}" class="btn btn-primary"> <a href="{% url 'hrapplications:view' app.id %}" class="btn btn-primary">
<span class="glyphicon glyphicon-eye-open"></span> <i class="fa-solid fa-eye"></i>
</a> </a>
</td> </td>
</tr> </tr>