Changeset - b3fe9130e5d0
[Not reviewed]
Brett Smith - 4 years ago 2019-09-30 15:50:53
brettcsmith@brettcsmith.org
urls: All pages about attending are handled by views.buy_ticket.
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
pinaxcon/urls.py
Show inline comments
...
 
@@ -19,26 +19,26 @@ urlpatterns = [
 
    # about
 
    url(r"^about$", TemplateView.as_view(template_name="static_pages/about.html"), name="about"),
 

	
 
    # program
 
    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")),
 

	
 
    # attend
 
    url(r"^attend$", TemplateView.as_view(template_name="static_pages/attend/attend.html"), name="attend/attend"),
 
    url(r"^tickets$", RedirectView.as_view(url="attend")),
 
    url(r"^attend$", views.buy_ticket),
 
    url(r"^tickets$", views.buy_ticket),
 
    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")),
 

	
 
    # 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")),
 

	
 
    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"),
0 comments (0 inline, 0 general)