diff options
Diffstat (limited to 'ishtar_common/views.py')
-rw-r--r-- | ishtar_common/views.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ishtar_common/views.py b/ishtar_common/views.py index 3e0bffd32..7963dc46a 100644 --- a/ishtar_common/views.py +++ b/ishtar_common/views.py @@ -385,6 +385,8 @@ def get_item(model, func_name, default_name, extra_request_keys=[], lnk = link_template % reverse('show-'+default_name, args=[data[0], '']) except NoReverseMatch: + print '"show-' + default_name + "\" args (" + \ + unicode(data[0]) + ") url not available" lnk = '' res = {'id':data[0], 'link':lnk} for idx, value in enumerate(data[1:]): |