1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 from django.conf.urls import url
9 url(r'^(?P<form_tag>[^/]+)/$', views.form, name='contact_form'),
10 url(r'^(?P<form_tag>[^/]+)/thanks/$', views.thanks, name='contact_thanks'),
11 url(r'^attachment/(?P<contact_id>\d+)/(?P<tag>[^/]+)/$', views.attachment, name='contact_attachment'),
12 url(r'^results/(?P<contact_id>\d+)/(?P<digest>[0-9a-f]+)/', views.results, name='contact_results'),