Sith/subscription/urls.py
2024-11-20 12:45:17 +01:00

34 lines
911 B
Python

#
# Copyright 2023 © AE UTBM
# ae@utbm.fr / ae.info@utbm.fr
#
# This file is part of the website of the UTBM Student Association (AE UTBM),
# https://ae.utbm.fr.
#
# You can find the source code of the website at https://github.com/ae-utbm/sith
#
# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3)
# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE
# OR WITHIN THE LOCAL FILE "LICENSE"
#
#
from django.urls import path
from subscription.views import (
CreateSubscriptionExistingUserFragment,
NewSubscription,
SubscriptionsStatsView,
)
urlpatterns = [
# Subscription views
path("", NewSubscription.as_view(), name="subscription"),
path(
"existing-user/",
CreateSubscriptionExistingUserFragment.as_view(),
name="subscription-fragment-existing-user",
),
path("stats/", SubscriptionsStatsView.as_view(), name="stats"),
]