mirror of
https://github.com/Hopiu/django.git
synced 2026-04-02 22:30:25 +00:00
5 lines
119 B
Python
5 lines
119 B
Python
from django.conf.urls import url
|
|
|
|
urlpatterns = [
|
|
url(r'^index/$', 'view_tests.views.index_page', name='index'),
|
|
]
|