On Tue, Jul 28, 2009 at 7:26 AM, gentlestone<tibor.b...@hotmail.com> wrote: > Thank for the quick answer. It is nice to know the forum is alive and > helpful :-) > But I'm sorry, I've tried this lookup too. So the code > > # def get_absolute_url(self): > # return "/resys/katalog/kategoria/" + str(self.id) > def get_absolute_url(self): > return ('view', (), { 'object_id' : self.id }) > get_absolute_url = permalink(get_absolute_url) > > is resulting in similar exception: > > Reverse for 'view' with arguments '()' and keyword arguments > '{'object_id': 13}' not found.
try changing your url patterns to use named urls, I think you might be running into an ambiguous url with the name view http://dpaste.com/72371/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---