~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to privacy_policy/urls.py

merged trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from django.conf.urls import *
 
2
from privacy_policy import views
 
3
 
 
4
urlpatterns = [
 
5
    url(r'^$', views.privacy_policy, name='privacy_policy'),
 
6
    url(r'^(?P<slug>[-\w]+)/', views.privacy_policy, name='policy_translated'),
 
7
]