2015-10-16 17:53:02 +00:00
|
|
|
from django.conf import settings
|
2017-08-10 04:07:55 +00:00
|
|
|
from django.conf.urls import include, url
|
2015-10-16 17:53:02 +00:00
|
|
|
from django.conf.urls.static import static
|
2017-08-16 04:57:51 +00:00
|
|
|
from django.contrib.staticfiles.templatetags.staticfiles import static as _static
|
2015-10-16 17:53:02 +00:00
|
|
|
from django.views.generic import TemplateView
|
2017-08-13 23:19:12 +00:00
|
|
|
from django.views.generic import RedirectView
|
2015-10-16 17:53:02 +00:00
|
|
|
|
|
|
|
from django.contrib import admin
|
|
|
|
|
2017-08-17 16:20:18 +00:00
|
|
|
from pinaxcon import views
|
|
|
|
|
2015-10-16 17:53:02 +00:00
|
|
|
import symposion.views
|
|
|
|
|
2018-12-06 15:02:42 +00:00
|
|
|
DONATE_REDIRECT = RedirectView.as_view(url='https://sfconservancy.org/donate/')
|
2015-10-16 17:53:02 +00:00
|
|
|
|
2016-02-27 22:55:59 +00:00
|
|
|
urlpatterns = [
|
2019-06-29 09:06:30 +00:00
|
|
|
url(r"^$", TemplateView.as_view(template_name="static_pages/homepage.html"), name="home"),
|
2017-08-10 04:25:12 +00:00
|
|
|
|
|
|
|
# about
|
2018-10-05 16:15:11 +00:00
|
|
|
url(r"^about$", TemplateView.as_view(template_name="static_pages/about.html"), name="about"),
|
2017-08-10 04:25:12 +00:00
|
|
|
|
|
|
|
# program
|
2018-10-05 16:15:11 +00:00
|
|
|
url(r"^program/events$", TemplateView.as_view(template_name="static_pages/program/events.html"), name="program/events"),
|
|
|
|
url(r"^events$", RedirectView.as_view(url="program/events")),
|
|
|
|
url(r"^program/call-for-proposals$", TemplateView.as_view(template_name="static_pages/program/call_for_proposals.html"), name="program/call-for-proposals"),
|
|
|
|
# url(r"^program/selection-process$", TemplateView.as_view(template_name="static_pages/program/selection_process.html"), name="program/selection-process"),
|
|
|
|
url(r"^proposals$", RedirectView.as_view(url="program/call-for-proposals")),
|
|
|
|
url(r"^cfp$", RedirectView.as_view(url="program/call-for-proposals")),
|
2017-08-20 03:33:21 +00:00
|
|
|
|
2017-08-10 04:25:12 +00:00
|
|
|
# attend
|
2019-01-07 20:44:25 +00:00
|
|
|
url(r"^attend$", views.buy_ticket),
|
|
|
|
url(r"^tickets$", views.buy_ticket),
|
2018-10-05 16:15:11 +00:00
|
|
|
url(r"^tickets/buy$", views.buy_ticket, name="buy_ticket"),
|
|
|
|
# url(r"^attend/accessibility-and-accommodations$",TemplateView.as_view(template_name="static_pages/attend/accommodations.html"), name="attend/accessibility-and-accommodations"),
|
|
|
|
# url(r"^accessibility$", RedirectView.as_view(url="attend/accessibility-and-accommodations")),
|
2019-06-29 07:11:12 +00:00
|
|
|
|
2018-10-05 16:15:11 +00:00
|
|
|
# url(r"^safety$", TemplateView.as_view(template_name="static_pages/safety.html"), name="safety"),
|
|
|
|
# url(r"^emergencies$", RedirectView.as_view(url="safety")),
|
|
|
|
# url(r"^emergency$", RedirectView.as_view(url="safety")),
|
2019-06-29 07:11:12 +00:00
|
|
|
|
2018-10-05 16:15:11 +00:00
|
|
|
url(r"^code-of-conduct$", TemplateView.as_view(template_name="static_pages/code_of_conduct/code_of_conduct.html"), name="code-of-conduct"),
|
|
|
|
url(r"^coc$", RedirectView.as_view(url="code-of-conduct")),
|
|
|
|
# url(r"^code-of-conduct/harassment-incidents$", TemplateView.as_view(template_name="static_pages/code_of_conduct/harassment_procedure_attendee.html"), name="code-of-conduct/harassment-incidents"),
|
|
|
|
# url(r"^code-of-conduct/harassment-staff-procedures$", TemplateView.as_view(template_name="static_pages/code_of_conduct/harassment_procedure_staff.html"), name="code-of-conduct/harassment-staff-procedures"),
|
2017-08-10 04:25:12 +00:00
|
|
|
|
|
|
|
# sponsor
|
2018-10-05 16:15:11 +00:00
|
|
|
url(r"^sponsors/prospectus$", RedirectView.as_view(url=_static("assets/2019_CopyleftConf_prospectus.pdf")), name="sponsors/prospectus"),
|
|
|
|
# url(r"^sponsors/become-a-sponsor$", TemplateView.as_view(template_name="static_pages/sponsors/become_a_sponsor.html"), name="sponsors/become-a-sponsor"),
|
2018-12-06 15:02:42 +00:00
|
|
|
url(r"^sponsors/donate$", DONATE_REDIRECT),
|
|
|
|
url(r"^donate$", DONATE_REDIRECT),
|
|
|
|
url(r"^about/donate$", DONATE_REDIRECT),
|
2017-08-10 04:25:12 +00:00
|
|
|
|
|
|
|
# news
|
2018-10-05 16:15:11 +00:00
|
|
|
# url(r"^news$", TemplateView.as_view(template_name="static_pages/news.html"), name="news"),
|
2017-08-09 14:23:29 +00:00
|
|
|
|
2017-08-10 04:25:12 +00:00
|
|
|
# Django, Symposion, and Registrasion URLs
|
2017-08-09 14:23:29 +00:00
|
|
|
|
2015-10-16 17:53:02 +00:00
|
|
|
url(r"^admin/", include(admin.site.urls)),
|
|
|
|
|
2017-08-18 15:46:51 +00:00
|
|
|
url(r"^login$", views.account_login, name="nbpy_login"),
|
2017-08-18 16:39:54 +00:00
|
|
|
# Override the default account_login view with one that takes email addys
|
|
|
|
url(r"^account/login/$", views.EmailLoginView.as_view(), name="account_login"),
|
2015-10-16 17:53:02 +00:00
|
|
|
url(r"^account/", include("account.urls")),
|
|
|
|
|
|
|
|
url(r"^dashboard/", symposion.views.dashboard, name="dashboard"),
|
|
|
|
|
|
|
|
url(r"^speaker/", include("symposion.speakers.urls")),
|
|
|
|
url(r"^proposals/", include("symposion.proposals.urls")),
|
|
|
|
url(r"^sponsors/", include("symposion.sponsorship.urls")),
|
|
|
|
url(r"^reviews/", include("symposion.reviews.urls")),
|
|
|
|
url(r"^schedule/", include("symposion.schedule.urls")),
|
|
|
|
|
|
|
|
url(r"^teams/", include("symposion.teams.urls")),
|
|
|
|
|
2016-09-21 00:46:52 +00:00
|
|
|
# Demo payment gateway and related features
|
2017-10-03 02:15:30 +00:00
|
|
|
url(r"^tickets/payments/", include("registripe.urls")),
|
2016-09-21 00:46:52 +00:00
|
|
|
|
2016-03-30 04:13:50 +00:00
|
|
|
# Required by registrasion
|
2017-10-03 01:26:09 +00:00
|
|
|
url(r'^tickets/', include('registrasion.urls')),
|
2016-03-30 04:13:50 +00:00
|
|
|
url(r'^nested_admin/', include('nested_admin.urls')),
|
|
|
|
|
2016-09-01 23:59:10 +00:00
|
|
|
# Catch-all MUST go last.
|
|
|
|
#url(r"^", include("pinax.pages.urls")),
|
2016-02-27 22:55:59 +00:00
|
|
|
]
|
2015-10-16 17:53:02 +00:00
|
|
|
|
2017-11-13 00:45:05 +00:00
|
|
|
|
2015-10-16 17:53:02 +00:00
|
|
|
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
2017-08-17 16:20:18 +00:00
|
|
|
|
|
|
|
handler500 = views.server_error
|