django-ex/project/urls.py
2016-04-29 16:24:47 +02:00

14 lines
349 B
Python

from django.conf.urls import include, url
from django.contrib import admin
from welcome.views import index, health
urlpatterns = [
# Examples:
# url(r'^$', 'project.views.home', name='home'),
# url(r'^blog/', include('blog.urls')),
url(r'^$', index),
url(r'^health$', health),
url(r'^admin/', include(admin.site.urls)),
]