[CHANGE] Gylphicons to Font-Awesome

This commit is contained in:
Peter Pfeufer 2023-12-09 15:37:25 +01:00
parent 61ec67183c
commit e0fa615e90
No known key found for this signature in database
GPG Key ID: 6051D2C6AD4EBC27

View File

@ -20,6 +20,7 @@
{% endif %} {% endif %}
</tr> </tr>
</thead> </thead>
{% for ops in timers %} {% for ops in timers %}
<tbody> <tbody>
<tr> <tr>
@ -38,15 +39,16 @@
<td nowrap><div id="localtime{{ ops.id }}"></div><div id="countdown{{ ops.id }}"></div></td> <td nowrap><div id="localtime{{ ops.id }}"></div><div id="countdown{{ ops.id }}"></div></td>
<td>{{ ops.duration }}</td> <td>{{ ops.duration }}</td>
<td>{{ ops.fc }}</td> <td>{{ ops.fc }}</td>
{% if perms.auth.optimer_management %} {% if perms.auth.optimer_management %}
{# <td>{{ ops.eve_character }}</td>#} {# <td>{{ ops.eve_character }}</td>#}
<td class="text-end"> <td class="text-end">
<a href="{% url 'optimer:remove' ops.id %}" class="btn btn-danger"> <a href="{% url 'optimer:remove' ops.id %}" class="btn btn-danger">
<span class="glyphicon glyphicon-remove"></span> <i class="fa-solid fa-trash"></i>
</a> </a>
<a href="{% url 'optimer:edit' ops.id %}" class="btn btn-info"> <a href="{% url 'optimer:edit' ops.id %}" class="btn btn-info">
<span class="glyphicon glyphicon-pencil"></span> <i class="fa-solid fa-pen-to-square"></i>
</a> </a>
</td> </td>
{% endif %} {% endif %}