mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-10 16:23:23 +00:00
12 lines
187 B
Python
12 lines
187 B
Python
from django.conf.urls import url, include
|
|
|
|
from subscription.views import *
|
|
|
|
urlpatterns = [
|
|
# Subscription views
|
|
url(r'^$', NewSubscription.as_view(), name='subscription'),
|
|
]
|
|
|
|
|
|
|