2017-04-24 15:51:12 +00:00
|
|
|
# -*- coding:utf-8 -*
|
|
|
|
#
|
|
|
|
# Copyright 2016,2017
|
|
|
|
# - Skia <skia@libskia.so>
|
2017-08-16 22:07:19 +00:00
|
|
|
# - Sli <antoine@bartuccio.fr>
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
|
|
|
# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM,
|
|
|
|
# http://ae.utbm.fr.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify it under
|
|
|
|
# the terms of the GNU General Public License a published by the Free Software
|
|
|
|
# Foundation; either version 3 of the License, or (at your option) any later
|
|
|
|
# version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
# details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along with
|
|
|
|
# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple
|
|
|
|
# Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2019-10-05 16:14:41 +00:00
|
|
|
from django.urls import re_path
|
2016-02-02 15:34:36 +00:00
|
|
|
|
|
|
|
from club.views import *
|
|
|
|
|
|
|
|
urlpatterns = [
|
2019-10-05 16:14:41 +00:00
|
|
|
re_path(r"^$", ClubListView.as_view(), name="club_list"),
|
|
|
|
re_path(r"^new$", ClubCreateView.as_view(), name="club_new"),
|
|
|
|
re_path(r"^stats$", ClubStatView.as_view(), name="club_stats"),
|
|
|
|
re_path(r"^(?P<club_id>[0-9]+)/$", ClubView.as_view(), name="club_view"),
|
|
|
|
re_path(
|
2018-10-04 19:29:19 +00:00
|
|
|
r"^(?P<club_id>[0-9]+)/rev/(?P<rev_id>[0-9]+)/$",
|
|
|
|
ClubRevView.as_view(),
|
|
|
|
name="club_view_rev",
|
|
|
|
),
|
2019-10-05 16:14:41 +00:00
|
|
|
re_path(
|
|
|
|
r"^(?P<club_id>[0-9]+)/hist$", ClubPageHistView.as_view(), name="club_hist"
|
|
|
|
),
|
|
|
|
re_path(r"^(?P<club_id>[0-9]+)/edit$", ClubEditView.as_view(), name="club_edit"),
|
|
|
|
re_path(
|
2018-10-04 19:29:19 +00:00
|
|
|
r"^(?P<club_id>[0-9]+)/edit/page$",
|
|
|
|
ClubPageEditView.as_view(),
|
|
|
|
name="club_edit_page",
|
|
|
|
),
|
2019-10-05 16:14:41 +00:00
|
|
|
re_path(
|
2018-10-04 19:29:19 +00:00
|
|
|
r"^(?P<club_id>[0-9]+)/members$", ClubMembersView.as_view(), name="club_members"
|
|
|
|
),
|
2019-10-05 16:14:41 +00:00
|
|
|
re_path(
|
2018-10-04 19:29:19 +00:00
|
|
|
r"^(?P<club_id>[0-9]+)/elderlies$",
|
|
|
|
ClubOldMembersView.as_view(),
|
|
|
|
name="club_old_members",
|
|
|
|
),
|
2019-10-05 16:14:41 +00:00
|
|
|
re_path(
|
2018-10-04 19:29:19 +00:00
|
|
|
r"^(?P<club_id>[0-9]+)/sellings$",
|
|
|
|
ClubSellingView.as_view(),
|
|
|
|
name="club_sellings",
|
|
|
|
),
|
2019-10-05 16:14:41 +00:00
|
|
|
re_path(
|
2018-10-04 19:29:19 +00:00
|
|
|
r"^(?P<club_id>[0-9]+)/sellings/csv$",
|
|
|
|
ClubSellingCSVView.as_view(),
|
|
|
|
name="sellings_csv",
|
|
|
|
),
|
2019-10-05 16:14:41 +00:00
|
|
|
re_path(
|
|
|
|
r"^(?P<club_id>[0-9]+)/prop$", ClubEditPropView.as_view(), name="club_prop"
|
|
|
|
),
|
|
|
|
re_path(r"^(?P<club_id>[0-9]+)/tools$", ClubToolsView.as_view(), name="tools"),
|
|
|
|
re_path(
|
|
|
|
r"^(?P<club_id>[0-9]+)/mailing$", ClubMailingView.as_view(), name="mailing"
|
|
|
|
),
|
|
|
|
re_path(
|
2018-10-04 19:29:19 +00:00
|
|
|
r"^(?P<mailing_id>[0-9]+)/mailing/generate$",
|
|
|
|
MailingAutoGenerationView.as_view(),
|
|
|
|
name="mailing_generate",
|
|
|
|
),
|
2019-10-05 16:14:41 +00:00
|
|
|
re_path(
|
2018-10-04 19:29:19 +00:00
|
|
|
r"^(?P<mailing_id>[0-9]+)/mailing/delete$",
|
|
|
|
MailingDeleteView.as_view(),
|
|
|
|
name="mailing_delete",
|
|
|
|
),
|
2019-10-05 16:14:41 +00:00
|
|
|
re_path(
|
2018-10-04 19:29:19 +00:00
|
|
|
r"^(?P<mailing_subscription_id>[0-9]+)/mailing/delete/subscription$",
|
|
|
|
MailingSubscriptionDeleteView.as_view(),
|
|
|
|
name="mailing_subscription_delete",
|
|
|
|
),
|
2019-10-05 16:14:41 +00:00
|
|
|
re_path(
|
2018-10-04 19:29:19 +00:00
|
|
|
r"^membership/(?P<membership_id>[0-9]+)/set_old$",
|
|
|
|
MembershipSetOldView.as_view(),
|
|
|
|
name="membership_set_old",
|
|
|
|
),
|
2019-11-24 18:23:43 +00:00
|
|
|
re_path(
|
|
|
|
r"^membership/(?P<membership_id>[0-9]+)/delete$",
|
|
|
|
MembershipDeleteView.as_view(),
|
|
|
|
name="membership_delete",
|
|
|
|
),
|
2019-10-05 16:14:41 +00:00
|
|
|
re_path(
|
|
|
|
r"^(?P<club_id>[0-9]+)/poster$", PosterListView.as_view(), name="poster_list"
|
|
|
|
),
|
|
|
|
re_path(
|
2018-10-04 19:29:19 +00:00
|
|
|
r"^(?P<club_id>[0-9]+)/poster/create$",
|
|
|
|
PosterCreateView.as_view(),
|
|
|
|
name="poster_create",
|
|
|
|
),
|
2019-10-05 16:14:41 +00:00
|
|
|
re_path(
|
2018-10-04 19:29:19 +00:00
|
|
|
r"^(?P<club_id>[0-9]+)/poster/(?P<poster_id>[0-9]+)/edit$",
|
|
|
|
PosterEditView.as_view(),
|
|
|
|
name="poster_edit",
|
|
|
|
),
|
2019-10-05 16:14:41 +00:00
|
|
|
re_path(
|
2018-10-04 19:29:19 +00:00
|
|
|
r"^(?P<club_id>[0-9]+)/poster/(?P<poster_id>[0-9]+)/delete$",
|
|
|
|
PosterDeleteView.as_view(),
|
|
|
|
name="poster_delete",
|
|
|
|
),
|
2016-02-02 15:34:36 +00:00
|
|
|
]
|