[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">
<form>
<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>
</form>
</td>

View File

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