Compare commits
3 Commits
fix_1_foot
...
fix_3_url_
| Author | SHA1 | Date | |
|---|---|---|---|
| f7f25b9f0c | |||
| 7f4b2f2e87 | |||
| d1ef6e0dd3 |
@@ -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/'
|
||||
@@ -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'),),
|
||||
]
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user