Files
@ c7db6c77b8b0
Branch filter:
Location: CopyleftConf/copyleftconf-website/pinaxcon/urls.py - annotation
c7db6c77b8b0
2.5 KiB
text/x-python
add coc and colophon
04f246d85071 04f246d85071 04f246d85071 04f246d85071 04f246d85071 04f246d85071 04f246d85071 04f246d85071 04f246d85071 04f246d85071 0b1da0e85e83 d5c83fa496d9 d89bee5e9f37 d89bee5e9f37 c7db6c77b8b0 c7db6c77b8b0 c7db6c77b8b0 c7db6c77b8b0 c7db6c77b8b0 c7db6c77b8b0 c7db6c77b8b0 c7db6c77b8b0 c7db6c77b8b0 04f246d85071 04f246d85071 04f246d85071 04f246d85071 04f246d85071 04f246d85071 04f246d85071 04f246d85071 04f246d85071 04f246d85071 04f246d85071 04f246d85071 04f246d85071 04f246d85071 da1ac265d27c da1ac265d27c da1ac265d27c da1ac265d27c da1ac265d27c da1ac265d27c 6c94eb9e91ee 6c94eb9e91ee 6c94eb9e91ee 6c94eb9e91ee dc24e64d4f99 dc24e64d4f99 0b1da0e85e83 04f246d85071 04f246d85071 | from django.conf import settings
from django.conf.urls import patterns, include, url
from django.conf.urls.static import static
from django.views.generic import TemplateView
from django.contrib import admin
import symposion.views
urlpatterns = [
url(r"^$", TemplateView.as_view(template_name="static_pages/homepage.html"), name="home"),
url(r"^about$", TemplateView.as_view(template_name="static_pages/about.html"), name="about"),
url(r"^news$", TemplateView.as_view(template_name="static_pages/news.html"), name="news"),
url(r"^sponsors$", TemplateView.as_view(template_name="static_pages/sponsors.html"), name="sponsors"),
url(r"^colophon$", TemplateView.as_view(template_name="static_pages/colophon.html"), name="colophon"),
url(r"^proposals$", TemplateView.as_view(template_name="static_pages/proposals.html"), name="proposals"),
url(r"^selection-process$", TemplateView.as_view(template_name="static_pages/selection-process.html"), name="selection-process"),
url(r"^code-of-conduct$", TemplateView.as_view(template_name="static_pages/code-of-conduct.html"), name="code-of-conduct"),
url(r"^code-of-conduct/harassment-incidents$", TemplateView.as_view(template_name="static_pages/harassment-procedure-attendee.html"), name="harassment-procedure-attendee"),
url(r"^code-of-conduct/harassment-staff-procedures$", TemplateView.as_view(template_name="static_pages/harassment-procedure-staff.html"), name="harassment-procedure-staff"),
url(r"^admin/", include(admin.site.urls)),
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")),
# Demo payment gateway and related features
url(r"^register/pinaxcon/", include("pinaxcon.registrasion.urls")),
# Demo payment gateway and related features
url(r"^register/payments/", include("registripe.urls")),
# Required by registrasion
url(r'^register/', include('registrasion.urls')),
url(r'^nested_admin/', include('nested_admin.urls')),
# Catch-all MUST go last.
#url(r"^", include("pinax.pages.urls")),
]
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|