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 | ada0ab4962eb437bfbd2b300c5aca69bf5719bfb (patch) | |
| tree | dcfa2689395822cf1475deb1a6107bebb6006701 /ishtar_common/urls.py | |
| parent | 0500c0a5098c2b3347ffd36faaa692e97be3b5a4 (diff) | |
| download | Ishtar-ada0ab4962eb437bfbd2b300c5aca69bf5719bfb.tar.bz2 Ishtar-ada0ab4962eb437bfbd2b300c5aca69bf5719bfb.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:  | 
