diff --git a/pinaxcon/urls.py b/pinaxcon/urls.py index 1d59de5e1e6b84277de98bb9c90c4ab7ce2ba3b9..2ef02c1a564fac200e762baae7e469c214663c4b 100644 --- a/pinaxcon/urls.py +++ b/pinaxcon/urls.py @@ -15,6 +15,7 @@ DONATE_REDIRECT = RedirectView.as_view(url='https://sfconservancy.org/donate/') urlpatterns = [ url(r"^$", TemplateView.as_view(template_name="static_pages/homepage.html"), name="home"), + url(r"^livestream$", TemplateView.as_view(template_name="static_pages/livestream/index.html"), name="livestream"), # about url(r"^about$", TemplateView.as_view(template_name="static_pages/about.html"), name="about"),