Private
Public Access
1
0

create form

This commit is contained in:
Sander Roosendaal
2022-06-22 21:34:29 +02:00
parent 4988657151
commit 6ddef33385
9 changed files with 1155 additions and 1079 deletions

9
boatmovers/urls.py Normal file
View File

@@ -0,0 +1,9 @@
from django.conf import settings
from django.conf.urls import url, include
from django.urls import path, re_path
import boatmovers.views as views
urlpatterns = [
url(r'athlete/add/$',views.AthleteCreateView.as_view(),name='athlete_add'),
]