mirror of
https://github.com/tjsga/website-2018.git
synced 2025-04-09 22:10:18 -04:00
12 lines
247 B
Python
12 lines
247 B
Python
from django.conf.urls import url
|
|
|
|
from .views import *
|
|
|
|
urlpatterns = [
|
|
url(r'^$', index, name='index'),
|
|
url(r'about', about, name='about'),
|
|
url(r'resources', resources, name='resources'),
|
|
url(r'events', events, name='events'),
|
|
|
|
]
|