1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-07-05 05:04:04 +02:00

Display team solutions

This commit is contained in:
Yohann D'ANELLO
2020-04-30 01:20:50 +02:00
parent 3fdda5a030
commit f08f52c129
5 changed files with 44 additions and 7 deletions

View File

@ -1,10 +1,10 @@
from django.urls import path
from .views import CreateUserView
from .views import CreateUserView, DocumentView
app_name = "member"
urlpatterns = [
path('signup/', CreateUserView.as_view(), name="signup"),
path("file/<str:file>/", DocumentView.as_view(), name="document"),
]