Browse Source
Users can extend their connection through the captive portal
portal
Yohann D'ANELLO
5 years ago
No known key found for this signature in database
GPG Key ID: 3A75C55819C8CF85
1 changed files with
2 additions and
0 deletions
-
portail/urls.py
|
|
|
@ -25,6 +25,7 @@ to make a captive portal. |
|
|
|
This is only sugar, this does not provide any model. |
|
|
|
""" |
|
|
|
|
|
|
|
from cotisations.views import new_facture |
|
|
|
from django.conf.urls import url |
|
|
|
from django.contrib.auth.views import LoginView |
|
|
|
|
|
|
|
@ -33,4 +34,5 @@ from .views import SignUpView |
|
|
|
urlpatterns = [ |
|
|
|
url(r"^signup/$", SignUpView.as_view(), name="signup"), |
|
|
|
url(r"^login/$", LoginView.as_view(), name="login"), |
|
|
|
url(r"^extend-connection/(?P<userid>[0-9]+)/$", new_facture, name="extend-connection"), |
|
|
|
] |
|
|
|
|