from allauth.account.views import ( LoginView, LogoutView, ) from django.conf import settings from django.conf.urls import include, url from django.contrib import admin from camps.views import * from info.views import * from villages.views import * from program.views import * from sponsors.views import * from teams.views import * from people.views import * from bar.views import MenuView urlpatterns = [ url( r'^profile/', include('profiles.urls', namespace='profiles') ), url( r'^tickets/', include('tickets.urls', namespace='tickets') ), url( r'^shop/', include('shop.urls', namespace='shop') ), url( r'^news/', include('news.urls', namespace='news') ), url( r'^contact/', TemplateView.as_view(template_name='contact.html'), name='contact' ), url( r'^conduct/', TemplateView.as_view(template_name='coc.html'), name='conduct' ), url( r'^login/$', LoginView.as_view(), name='account_login', ), url( r'^logout/$', LogoutView.as_view(), name='account_logout', ), url( r'^privacy-policy/$', TemplateView.as_view(template_name='legal/privacy_policy.html'), name='privacy-policy' ), url( r'^general-terms-and-conditions/$', TemplateView.as_view(template_name='legal/general_terms_and_conditions.html'), name='general-terms' ), url(r'^accounts/', include('allauth.urls')), url(r'^admin/', include(admin.site.urls)), url( r'^camps/$', CampListView.as_view(), name='camp_list' ), # camp redirect views here url( r'^$', CampRedirectView.as_view(), kwargs={'page': 'camp_detail'}, name='camp_detail_redirect', ), url( r'^program/$', CampRedirectView.as_view(), kwargs={'page': 'schedule_index'}, name='schedule_index_redirect', ), url( r'^info/$', CampRedirectView.as_view(), kwargs={'page': 'info'}, name='info_redirect', ), url( r'^sponsors/$', CampRedirectView.as_view(), kwargs={'page': 'sponsors'}, name='sponsors_redirect', ), url( r'^villages/$', CampRedirectView.as_view(), kwargs={'page': 'village_list'}, name='village_list_redirect', ), url( r'^people/$', PeopleView.as_view(), name='people', ), url( r'^backoffice/', include('backoffice.urls', namespace='backoffice') ), # camp specific urls below here url( r'(?P[-_\w+]+)/', include([ url( r'^$', CampDetailView.as_view(), name='camp_detail' ), url( r'^info/$', CampInfoView.as_view(), name='info' ), url( r'^program/', include([ url( r'^$', ScheduleView.as_view(), name='schedule_index' ), url( r'^noscript/$', NoScriptScheduleView.as_view(), name='noscript_schedule_index' ), url( r'^ics/', ICSView.as_view(), name="ics_view" ), url( r'^control/', ProgramControlCenter.as_view(), name="program_control_center" ), url( r'^proposals/', include([ url( r'^$', ProposalListView.as_view(), name='proposal_list', ), url( r'^speakers/', include([ url( r'^create/$', SpeakerProposalCreateView.as_view(), name='speakerproposal_create' ), url( r'^(?P[a-f0-9-]+)/$', SpeakerProposalDetailView.as_view(), name='speakerproposal_detail' ), url( r'^(?P[a-f0-9-]+)/edit/$', SpeakerProposalUpdateView.as_view(), name='speakerproposal_update' ), url( r'^(?P[a-f0-9-]+)/submit/$', SpeakerProposalSubmitView.as_view(), name='speakerproposal_submit' ), url( r'^(?P[a-f0-9-]+)/pictures/(?P[-_\w+]+)/$', SpeakerProposalPictureView.as_view(), name='speakerproposal_picture', ), ]) ), url( r'^events/', include([ url( r'^create/$', EventProposalCreateView.as_view(), name='eventproposal_create' ), url( r'^(?P[a-f0-9-]+)/$', EventProposalDetailView.as_view(), name='eventproposal_detail' ), url( r'^(?P[a-f0-9-]+)/edit/$', EventProposalUpdateView.as_view(), name='eventproposal_update' ), url( r'^(?P[a-f0-9-]+)/submit/$', EventProposalSubmitView.as_view(), name='eventproposal_submit' ), ]) ), ]) ), url( r'^speakers/', include([ url( r'^$', SpeakerListView.as_view(), name='speaker_index' ), url( r'^(?P[-_\w+]+)/$', SpeakerDetailView.as_view(), name='speaker_detail' ), url( r'^(?P[-_\w+]+)/pictures/(?P[-_\w+]+)/$', SpeakerPictureView.as_view(), name='speaker_picture', ), ]), ), url( r'^events/$', EventListView.as_view(), name='event_index' ), url( r'^call-for-speakers/$', CallForSpeakersView.as_view(), name='call_for_speakers' ), url( r'^calendar/', ICSView.as_view(), name='ics_calendar' ), # this has to be the last URL here url( r'^(?P[-_\w+]+)/$', EventDetailView.as_view(), name='event_detail' ), ]) ), url( r'^sponsors/call/$', CallForSponsorsView.as_view(), name='call-for-sponsors' ), url( r'^sponsors/$', SponsorsView.as_view(), name='sponsors' ), url( r'^bar/menu$', MenuView.as_view(), name='menu' ), url( r'^villages/', include([ url( r'^$', VillageListView.as_view(), name='village_list' ), url( r'create/$', VillageCreateView.as_view(), name='village_create' ), url( r'(?P[-_\w+]+)/delete/$', VillageDeleteView.as_view(), name='village_delete' ), url( r'(?P[-_\w+]+)/edit/$', VillageUpdateView.as_view(), name='village_update' ), # this has to be the last url in the list url( r'(?P[-_\w+]+)/$', VillageDetailView.as_view(), name='village_detail' ), ]) ), url( r'^teams/', include('teams.urls', namespace='teams') ), ]) ) ] if settings.DEBUG: import debug_toolbar urlpatterns = [ url(r'^__debug__/', include(debug_toolbar.urls)), ] + urlpatterns