mirror of
https://github.com/Hopiu/django-tos.git
synced 2026-04-23 12:34:43 +00:00
13 lines
312 B
Python
13 lines
312 B
Python
from django.conf.urls import url
|
|
|
|
from tos.compat import 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'),
|
|
)
|