pep8 and other code-style changes
[wolnelektury.git] / src / suggest / urls.py
1 # -*- coding: utf-8 -*-
2 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 #
5 from django.conf.urls import patterns, url
6 from suggest import views
7
8 urlpatterns = patterns(
9     '',
10     url(r'^$', views.SuggestionFormView(), name='suggest'),
11     url(r'^plan/$', views.PublishingSuggestionFormView(), name='suggest_publishing'),
12 )