fe840f2003
Profile view - Let the user see his information. - List the clubs whose he is a member. Profile edition view - Renamed from previous "profile" view - User can now change "occupation" field. Club detail view - Informations about a club. - Accessible by staff members and "respos" of the club. - List members, with subscription fee (if applicable). Club admin - Change memberships of clubs added.
30 lines
1,009 B
Python
30 lines
1,009 B
Python
from django.conf.urls import url
|
|
from django.views.generic.base import TemplateView
|
|
from django.contrib.auth import views as django_views
|
|
from django_cas_ng import views as django_cas_views
|
|
|
|
from . import views
|
|
|
|
app_name = "gestion"
|
|
urlpatterns = [
|
|
# Profile
|
|
url(r'^profile/$', views.profile,
|
|
name='profile'),
|
|
url(r'^profile/edit/$', views.profile_edit,
|
|
name='profile_edit'),
|
|
|
|
# Clubs
|
|
url(r'^club/(?P<pk>\d+)/$', views.club_detail,
|
|
name='club_detail'),
|
|
|
|
# Authentication
|
|
url(r'^cof/denied$',
|
|
TemplateView.as_view(template_name='cof-denied.html'),
|
|
name="denied"),
|
|
url(r'^cas/login$', django_cas_views.login, name="cas_login"),
|
|
url(r'^cas/logout$', django_cas_views.logout, name="cas_logout"),
|
|
url(r'^outsider/login$', views.login_ext, name="login_ext"),
|
|
url(r'^outsider/logout$', django_views.logout, {'next_page': 'home'}),
|
|
url(r'^login$', views.login, name="login"),
|
|
url(r'^logout$', views.logout, name="logout"),
|
|
]
|