mirror of
https://github.com/Hopiu/django-tos.git
synced 2026-05-14 04:53:10 +00:00
10 lines
No EOL
307 B
Python
10 lines
No EOL
307 B
Python
from django.conf.urls import url, patterns
|
|
from tos.views import check_tos, TosView
|
|
|
|
urlpatterns = patterns('',
|
|
# Terms of Service conform
|
|
url(r'^confirm/$', check_tos, name='tos_check_tos'),
|
|
|
|
# Terms of service simple display
|
|
url(r'^$', TosView.as_view(), name='tos'),
|
|
) |