mirror of
https://github.com/Hopiu/django-tos.git
synced 2026-05-22 00:21:52 +00:00
12 lines
342 B
Python
12 lines
342 B
Python
from django.conf.urls import include, url
|
|
from django.views.generic import TemplateView
|
|
|
|
from tos.compat import patterns
|
|
from tos import views
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^$', TemplateView.as_view(template_name='index.html'), name='index'),
|
|
|
|
url(r'^login/$', views.login, {}, 'login'),
|
|
url(r'^tos/', include('tos.urls')),
|
|
)
|