from __future__ import unicode_literals from django.conf.urls import patterns, url urlpatterns = patterns( 'converter.views', url(r'^create_for/(?P[-\w]+)/(?P[-\w]+)/(?P\d+)/$', 'transformation_create', (), 'transformation_create'), url(r'^list_for/(?P[-\w]+)/(?P[-\w]+)/(?P\d+)/$', 'transformation_list', (), 'transformation_list'), url(r'^delete/(?P\d+)/$', 'transformation_delete', (), 'transformation_delete'), url(r'^edit/(?P\d+)/$', 'transformation_edit', (), 'transformation_edit'), )