Compare commits

...

3 Commits

Author SHA1 Message Date
f7f25b9f0c Weiterleitung Bibliothek 2025-03-08 12:30:45 +01:00
7f4b2f2e87 Merge branch 'fix_2_Button_'Moderieren'' into 'master'
Replace button 'Eröffnen' with 'Moderieren'

See merge request enrichment-2024/qivip!1
2025-03-08 10:54:21 +00:00
d1ef6e0dd3 Replace button 'Eröffnen' with 'Moderieren' 2025-03-08 11:47:46 +01:00
3 changed files with 4 additions and 3 deletions

View File

@@ -127,4 +127,4 @@ BASE_DIR='static' #von ben8 hinzugefügt
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
LOGIN_URL = '/login/'
LOGIN_URL = '/account/login/'

View File

@@ -16,11 +16,12 @@ Including another URLconf
"""
from django.contrib import admin # type: ignore
from django.urls import path, include
from django.contrib.auth import login
urlpatterns = [
path('admin/', admin.site.urls),
path('account/', include('accounts.urls')),
path('', include('homepage.urls')),
path('play/', include('components.urls')),
path('library/', include('library.urls')),
path('library/', include('library.urls'),),
]

View File

@@ -8,7 +8,7 @@
</div>
<div class="grid sm:grid-cols-3 place-items-stretch text-center mt-8 gap-4 p-4 border-3 bg-blue-100 border-blue-100 rounded-md">
<a class="qp-a-button bg-green-500 text-white" href="#">Teilnehmen</a>
<a class="qp-a-button bg-indigo-500 text-white" href="#">Eröffnen</a>
<a class="qp-a-button bg-indigo-500 text-white" href="#">Moderieren</a>
<a class="qp-a-button bg-purple-500 text-white" href="#">Verwalten</a>
</div>
</div>