rebelstuff

Keep track of your stuff
git clone https://git.ce9e.org/rebelstuff.git

commit
65d07f81dddd00e235cf1f8373062d4e8681b7dd
parent
650ce8f1a67f95f37617aa4785f972df3df93cfb
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2023-04-08 10:51
fix URL priority

Diffstat

M rebelstuff/urls.py 2 +-

1 files changed, 1 insertions, 1 deletions


diff --git a/rebelstuff/urls.py b/rebelstuff/urls.py

@@ -4,10 +4,10 @@ from . import views
    4     4 from .admin import site
    5     5 
    6     6 urlpatterns = [
    7    -1     path('', site.urls),
    8     7     path(
    9     8         'calendar/',
   10     9         views.CalendarView.as_view(),
   11    10         name='calendar',
   12    11     ),
   -1    12     path('', site.urls),
   13    13 ]