mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-25 04:43:10 +00:00
Users can extend their connection through the captive portal
This commit is contained in:
parent
ea8e5e80db
commit
c4a93927a2
1 changed files with 2 additions and 0 deletions
|
@ -25,6 +25,7 @@ to make a captive portal.
|
||||||
This is only sugar, this does not provide any model.
|
This is only sugar, this does not provide any model.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
from cotisations.views import new_facture
|
||||||
from django.conf.urls import url
|
from django.conf.urls import url
|
||||||
from django.contrib.auth.views import LoginView
|
from django.contrib.auth.views import LoginView
|
||||||
|
|
||||||
|
@ -33,4 +34,5 @@ from .views import SignUpView
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
url(r"^signup/$", SignUpView.as_view(), name="signup"),
|
url(r"^signup/$", SignUpView.as_view(), name="signup"),
|
||||||
url(r"^login/$", LoginView.as_view(), name="login"),
|
url(r"^login/$", LoginView.as_view(), name="login"),
|
||||||
|
url(r"^extend-connection/(?P<userid>[0-9]+)/$", new_facture, name="extend-connection"),
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue