From 469369fbc414475b2eab40ad0f57a1069f250c11 Mon Sep 17 00:00:00 2001 From: Tom Teichler <tom.teichler@teckids.org> Date: Mon, 21 Feb 2022 20:35:23 +0100 Subject: [PATCH] Fix icon names --- .../apps/paweljong/templates/paweljong/event/full.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/aleksis/apps/paweljong/templates/paweljong/event/full.html b/aleksis/apps/paweljong/templates/paweljong/event/full.html index 43e2566..341236d 100644 --- a/aleksis/apps/paweljong/templates/paweljong/event/full.html +++ b/aleksis/apps/paweljong/templates/paweljong/event/full.html @@ -27,23 +27,23 @@ <table> <tr> - <td><i class="material-icons small">calendar</i></td> + <td><i class="material-icons small">event</i></td> <td>{{ event.date_event }}</td> - <td><i class="material-icons small">map-marker</i></td> + <td><i class="material-icons small">location_on</i></td> <td>{{ event.place }}</td> </tr> <tr> - <td><i class="material-icons small">calendar-edit</i></td> + <td><i class="material-icons small">edit_calendar</i></td> <td colspan="2">{% trans "Registration open until" %}:</td> <td>{{ event.date_registration }}</td> </tr> <tr> - <td><i class="material-icons small">cash-multiple</i></td> + <td><i class="material-icons small">money</i></td> <td colspan="2">{% trans "Participation fee (all inclusive)" %}</td> <td>{{ event.cost }}</td> </tr> <tr> - <td><i class="material-icons small">account-group</i></td> + <td><i class="material-icons small">group</i></td> <td>{{ event.linked_group.members.count }}</td> <td colspan="2">{% trans "of" %} {{ event.max_participants }}</td> </tr> -- GitLab