diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-05-04 01:10:40 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-05-04 01:10:40 +0200 |
commit | bdc9cdab0d5e314b5d1a33a2d87fca22138d649d (patch) | |
tree | dcfa2689395822cf1475deb1a6107bebb6006701 /ishtar_common/urls.py | |
parent | 274b8d44ccf1f099f2e22b5a6a70f9743b746c1d (diff) | |
download | Ishtar-bdc9cdab0d5e314b5d1a33a2d87fca22138d649d.tar.bz2 Ishtar-bdc9cdab0d5e314b5d1a33a2d87fca22138d649d.zip |
Imports: manage unmatched item links
Diffstat (limited to 'ishtar_common/urls.py')
-rw-r--r-- | ishtar_common/urls.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py index 81b96967a..76e1d778b 100644 --- a/ishtar_common/urls.py +++ b/ishtar_common/urls.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (C) 2010-2014 Étienne Loks <etienne.loks_AT_peacefrogsDOTnet> +# Copyright (C) 2010-2015 Étienne Loks <etienne.loks_AT_peacefrogsDOTnet> # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -52,7 +52,9 @@ urlpatterns = patterns('', url(r'import-list/$', views.ImportListView.as_view(), name='current_imports'), url(r'import-list-old/$', views.ImportOldListView.as_view(), - name='old_imports') + name='old_imports'), + url(r'import-link-unmatched/(?P<pk>[0-9]+)/$', + views.ImportLinkView.as_view(), name='import_link_unmatched'), ) for section in menu.childs: for menu_item in section.childs: |