X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/1385d16f702e841c72cd24c69c77db62ba2e4a1f..ae44eb36129b207e217c3dea05e9a5cad2194fd5:/forum_modules/exporter/urls.py?ds=sidebyside diff --git a/forum_modules/exporter/urls.py b/forum_modules/exporter/urls.py index 6f24767..e9b35aa 100644 --- a/forum_modules/exporter/urls.py +++ b/forum_modules/exporter/urls.py @@ -2,12 +2,10 @@ from django.conf.urls.defaults import * from django.views.generic.simple import direct_to_template from django.utils.translation import ugettext as _ -from views import state, running, download, importer +from views import state, running, download urlpatterns = patterns('', url(r'^%s%s%s$' % (_('admin/'), _('exporter/'), _('state/')), state, name='exporter_state'), url(r'^%s(?P\w+)/%s$' % (_('admin/'), _('running/')), running, name='exporter_running'), url(r'^%s%s%s$' % (_('admin/'), _('exporter/'), _('download/')), download, name='exporter_download'), - - url(r'^%s%s%s$' % (_('admin/'), _('exporter/'), _('import/')), importer, name='exporter_import'), -) \ No newline at end of file +)