diff --git a/mos/urls.py b/mos/urls.py index a6b8e0e..03c585d 100644 --- a/mos/urls.py +++ b/mos/urls.py @@ -33,6 +33,7 @@ path('projects/', include('projects.urls')), path('join/', include('join.urls')), path('about/', TemplateView.as_view(template_name='about/index.html')), + path('calendar/', TemplateView.as_view(template_name='calendar/index.html')), path('announcements/', include('announcements.urls')), path('admin/', admin.site.urls), path('discord/', RedirectView.as_view(url='https://discord.gg/xbBPqdqr6n')), diff --git a/templates/calendar/index.html b/templates/calendar/index.html new file mode 100644 index 0000000..4ccd136 --- /dev/null +++ b/templates/calendar/index.html @@ -0,0 +1,5 @@ +{% extends "base/base_template.html" %} + +{% block content %} + +{% endblock %}