bornhack-website/src/bornhack/urls.py

181 lines
5.1 KiB
Python
Raw Normal View History

from allauth.account.views import (
SignupView,
LoginView,
LogoutView,
ConfirmEmailView,
EmailVerificationSentView,
PasswordResetView
)
2015-10-03 01:07:05 +00:00
from django.conf.urls import include, url
from django.contrib import admin
from django.views.generic import TemplateView, RedirectView
2016-06-06 19:47:37 +00:00
from django.core.urlresolvers import reverse_lazy
from camps.views import *
from info.views import *
2016-12-28 23:15:13 +00:00
from villages.views import *
from program.views import *
from sponsors.views import *
2015-10-03 01:07:05 +00:00
urlpatterns = [
2016-08-08 18:05:21 +00:00
url(
r'^profile/',
include('profiles.urls', namespace='profiles')
),
url(
r'^shop/',
include('shop.urls', namespace='shop')
),
url(
r'^news/',
include('news.urls', namespace='news')
),
url(
2016-02-21 01:04:51 +00:00
r'^$',
TemplateView.as_view(template_name='frontpage.html'),
name='frontpage'
),
2016-05-19 09:19:51 +00:00
url(
2016-08-08 18:07:28 +00:00
r'^contact/',
2016-05-19 09:19:51 +00:00
TemplateView.as_view(template_name='contact.html'),
name='contact'
),
2016-06-06 15:33:25 +00:00
url(
2016-08-08 18:07:28 +00:00
r'^conduct/',
2016-06-06 15:33:25 +00:00
TemplateView.as_view(template_name='coc.html'),
name='conduct'
),
2016-02-20 22:39:02 +00:00
url(
r'^login/$',
LoginView.as_view(),
name='account_login',
),
url(
r'^logout/$',
LogoutView.as_view(),
name='account_logout',
),
2016-06-01 12:08:24 +00:00
url(
2016-08-08 18:07:28 +00:00
r'^privacy-policy/$',
2016-06-01 12:08:24 +00:00
TemplateView.as_view(template_name='legal/privacy_policy.html'),
name='privacy-policy'
),
url(
2016-08-08 18:07:28 +00:00
r'^general-terms-and-conditions/$',
2016-06-01 12:08:24 +00:00
TemplateView.as_view(template_name='legal/general_terms_and_conditions.html'),
name='general-terms'
),
url(r'^accounts/', include('allauth.urls')),
2016-06-06 19:47:37 +00:00
url(r'^admin/', include(admin.site.urls)),
2017-01-25 00:49:13 +00:00
url(
r'^camps/$',
CampListView.as_view(),
name='camp_list'
),
# camp specific urls below here
2016-12-28 23:15:13 +00:00
url(
r'(?P<camp_slug>[-_\w+]+)/', include([
url(
r'^$',
2016-12-28 23:15:13 +00:00
CampDetailView.as_view(),
name='camp_detail'
),
2016-12-28 23:15:13 +00:00
url(
2016-12-28 23:15:13 +00:00
r'^info/$',
CampInfoView.as_view(),
name='info'
),
2016-12-28 23:15:13 +00:00
url(
r'^program/', include([
2016-12-28 23:15:13 +00:00
url(
r'^(?P<year>\d{4})-(?P<month>\d{2})-(?P<day>\d{2})/$',
ScheduleView.as_view(),
2016-12-28 23:15:13 +00:00
name='schedule_day'
),
url(
r'^$',
ScheduleView.as_view(),
2016-12-28 23:15:13 +00:00
name='schedule_index'
),
url(
r'^speakers/$',
SpeakerListView.as_view(),
name='speaker_index'
),
url(
r'^speakers/(?P<slug>[-_\w+]+)/$',
SpeakerDetailView.as_view(),
name='speaker_detail'
),
url(
r'^speakers/(?P<slug>[-_\w+]+)/pictures/(?P<picture>[-_\w+]+)/$',
SpeakerPictureView.as_view(),
name='speaker_picture',
),
2016-12-28 23:15:13 +00:00
url(
r'^events/$',
EventListView.as_view(),
name='event_index'
),
2017-01-24 15:42:57 +00:00
url(
r'^call-for-speakers/$',
2017-01-24 15:42:57 +00:00
CallForSpeakersView.as_view(),
name='call_for_speakers'
),
2016-12-28 23:15:13 +00:00
url(
r'^(?P<slug>[-_\w+]+)/$',
EventDetailView.as_view(),
name='event_detail'
),
])
),
2016-12-28 23:15:13 +00:00
url(
r'^sponsors/call/$',
CallForSponsorsView.as_view(),
name='call-for-sponsors'
),
url(
2016-12-28 23:15:13 +00:00
r'^sponsors/$',
SponsorsView.as_view(),
2016-12-28 23:15:13 +00:00
name='sponsors'
),
2016-12-28 23:15:13 +00:00
url(
2016-12-28 23:15:13 +00:00
r'^villages/', include([
url(
r'^$',
VillageListView.as_view(),
name='village_list'
),
url(
r'create/$',
VillageCreateView.as_view(),
name='village_create'
),
url(
r'(?P<slug>[-_\w+]+)/delete/$',
VillageDeleteView.as_view(),
name='village_delete'
),
url(
r'(?P<slug>[-_\w+]+)/edit/$',
VillageUpdateView.as_view(),
name='village_update'
),
url(
r'(?P<slug>[-_\w+]+)/$',
VillageDetailView.as_view(),
name='village_detail'
),
])
),
2016-12-28 23:15:13 +00:00
])
)
2015-10-03 01:07:05 +00:00
]