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