diff --git a/fixtures/sitetree.json b/fixtures/sitetree.json index 3f2b1d1e4170c6c8fe305fb43ba1490aa8699630..ffa70354f434513dcb62878ea3985892aa76e610 100644 --- a/fixtures/sitetree.json +++ b/fixtures/sitetree.json @@ -681,11 +681,11 @@ }, { "model": "sitetree.treeitem", - "pk": 41, + "pk": 42, "fields": { - "title": "Accessibility and Accommodations", + "title": "Guide Index", "hint": "", - "url": "/attend/accessibility-and-accommodations", + "url": "/guides", "urlaspattern": false, "tree": 1, "hidden": false, @@ -699,7 +699,7 @@ "access_restricted": false, "access_perm_type": 1, "parent": 8, - "sort_order": 41, + "sort_order": 42, "access_permissions": [] } } diff --git a/pinaxcon/templates/static_pages/attend/guides.html b/pinaxcon/templates/static_pages/attend/guides.html new file mode 100644 index 0000000000000000000000000000000000000000..6538d6f139d2708cb22863e92b9e2d1c84650215 --- /dev/null +++ b/pinaxcon/templates/static_pages/attend/guides.html @@ -0,0 +1,45 @@ +{% extends "page_with_title_and_lede.html" %} + +{% load i18n %} + +{% block head_title %}Guide Index{% endblock %} + +{% block heading %}Guide Index{% endblock %} + +{% block body_class %}attend{% endblock %} + +{% block lede %} + We provide lots of info to help you have an excellent North Bay Python. This is a listing of all the key guides and wiki pages. +{% endblock %} + + +{% block content %} + +

We want it to make it easy for you to attend North Bay Python, and we want you to have the best possible experience while you're at the conference. This is a listing of all the guides we've prepared for you, including some key pages from the Attendee Wiki.

+ +

Please feel free to email us at spam@northbaypython.org or find an organizer or volunteer in-person to ask questions and provide feedback.

+ +

Planning for North Bay Python

+ + + +

During the Conference

+ + + +{% endblock %} diff --git a/pinaxcon/urls.py b/pinaxcon/urls.py index a936b8b4b0259fbc918f2ca3d1b37d1360c0f2aa..abcb77225148599a1ba13f34489d650699fede5a 100644 --- a/pinaxcon/urls.py +++ b/pinaxcon/urls.py @@ -41,6 +41,8 @@ urlpatterns = [ url(r"^attend/tshirt$", TemplateView.as_view(template_name="static_pages/attend/tshirt.html"), name="attend/tshirt"), 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"^guides$",TemplateView.as_view(template_name="static_pages/attend/guides.html"), name="attend/guides"), + 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"^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"),