[CHANGE] Replaced Glyphicons with Fontawesome icons

This commit is contained in:
Peter Pfeufer 2023-11-28 19:19:34 +01:00
parent a9c87bc25a
commit 8adab8bae0
No known key found for this signature in database
GPG Key ID: 6051D2C6AD4EBC27
2 changed files with 14 additions and 13 deletions

View File

@ -39,7 +39,7 @@
<td class="text-center"> <td class="text-center">
<form> <form>
<button type="submit" class="btn btn-warning" name="removechar" value="{{ fat.character.character_id }}"> <button type="submit" class="btn btn-warning" name="removechar" value="{{ fat.character.character_id }}">
<span class="glyphicon glyphicon-remove"></span> <i class="fa-solid fa-trash"></i>
</button> </button>
</form> </form>
</td> </td>

View File

@ -50,18 +50,19 @@
<th class="text-center">{% translate "Edit" %}</th> <th class="text-center">{% translate "Edit" %}</th>
</tr> </tr>
{% for link in created_fats %} {% for link in created_fats %}
<tr> <tr>
<td class="text-center"><a href="{% url 'fatlink:click' link.hash %}" class="badge bg-primary">{{ link.fleet }}</a></td> <td class="text-center"><a href="{% url 'fatlink:click' link.hash %}" class="badge bg-primary">{{ link.fleet }}</a></td>
<td class="text-center">{{ link.creator.username }}</td> <td class="text-center">{{ link.creator.username }}</td>
<td class="text-center">{{ link.fatdatetime }}</td> <td class="text-center">{{ link.fatdatetime }}</td>
<td class="text-center">{{ link.duration }}</td> <td class="text-center">{{ link.duration }}</td>
<td class="text-center"> <td class="text-center">
<a href="{% url 'fatlink:modify' link.hash %}"> <a href="{% url 'fatlink:modify' link.hash %}">
<button type="button" class="btn btn-info"><span <button type="button" class="btn btn-info">
class="glyphicon glyphicon-edit"></span></button> <i class="fa-solid fa-pen-to-square"></i>
</a> </button>
</td> </a>
</tr> </td>
</tr>
{% endfor %} {% endfor %}
</table> </table>