Skip to content
Snippets Groups Projects
Commit edc97c68 authored by frekk's avatar frekk
Browse files

reorder URLs so that things work

parent b6c5f11a
Branches
Tags
No related merge requests found
...@@ -5,8 +5,8 @@ from . import views ...@@ -5,8 +5,8 @@ from . import views
app_name = 'memberdb' app_name = 'memberdb'
urlpatterns = [ urlpatterns = [
path('', views.index, name='index'), path('', views.index, name='index'),
path('<str:username>/', views.info, name='info'),
path('register/', views.register, name='register'), path('register/', views.register, name='register'),
path('renew/', views.renew, name='renew'), path('renew/', views.renew, name='renew'),
path('renew/<str:username>/', views.renew, name='renew'), path('renew/<str:username>/', views.renew, name='renew'),
path('<str:username>/', views.info, name='info'),
] ]
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment