[TASK] add icons to add new user and improve ui in setting a fixed height in activity log
This commit is contained in:
parent
af2e7cb557
commit
5331ac71fa
@ -12,13 +12,13 @@
|
|||||||
<div class="grid sm:grid-cols-3 gap-3 mt-3">
|
<div class="grid sm:grid-cols-3 gap-3 mt-3">
|
||||||
<button type="button"
|
<button type="button"
|
||||||
onclick="document.getElementById('add-clubuser').showModal()"
|
onclick="document.getElementById('add-clubuser').showModal()"
|
||||||
class="btn btn-primary">Vereinsmitglied</button>
|
class="btn btn-primary">🥳 Vereinsmitglied</button>
|
||||||
<button type="button"
|
<button type="button"
|
||||||
onclick="document.getElementById('add-scheckbuch').showModal()"
|
onclick="document.getElementById('add-scheckbuch').showModal()"
|
||||||
class="btn btn-dark">Scheckbuch</button>
|
class="btn btn-dark">🧑🏫 Scheckbuch</button>
|
||||||
<button type="button"
|
<button type="button"
|
||||||
onclick="document.getElementById('add-schnupperkurs').showModal()"
|
onclick="document.getElementById('add-schnupperkurs').showModal()"
|
||||||
class="btn btn-dark">Schnupperkurs</button>
|
class="btn btn-dark">👨🎓 Schnupperkurs</button>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -402,11 +402,11 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="bg-white dark:bg-primary-900 text-black dark:text-white rounded-md block shadow">
|
<div class="bg-white dark:bg-primary-900 text-black dark:text-white rounded-md block shadow">
|
||||||
<h2 class="h2">Aktivitäten</h2>
|
<h2 class="h2">Aktivitäten</h2>
|
||||||
<div class="mx-3 divide-y divide-gray-200 dark:divide-primary-600">
|
<div class="mx-3 max-h-60 overflow-y-scroll">
|
||||||
<div class="py-3">
|
<div class="py-3">
|
||||||
<ul class="list-disc ms-4">
|
<ul class="list-disc ms-4">
|
||||||
{% for activity in activities %}
|
{% for activity in activities %}
|
||||||
<li>{{ activity.created_at | date(format="%d. %m. %Y") }}: {{ activity.text }}</li>
|
<li><strong>{{ activity.created_at | date(format="%d. %m. %Y") }}:</strong> <small>{{ activity.text }}</small></li>
|
||||||
{% else %}
|
{% else %}
|
||||||
<li>Noch keine Aktivität... Stay tuned 😆</li>
|
<li>Noch keine Aktivität... Stay tuned 😆</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user