2009/7/31 Steven Church <spchu...@gmail.com>: > Daniel, > > Thank you for replying. I have finally found time now to start working on > this project again. I have the following. > > def viewlink(self, obj): > return '<a href="/application/"' % obj.id % '">View & Print<a>' > viewlink.allow_tags = True > > and i have put the "viewlink" within the list_display: i get the following > error. > > TemplateSyntaxError at /admin/application/student/ > > Caught an exception while rendering: not all arguments converted during > string formatting
You need to learn about Python string formatting, because what you've done there is invalid Python code. The official docs are here: http://docs.python.org/library/stdtypes.html#string-formatting but basically your return statement should be like this: return '<a href="/application/%s/>View & Print<a>' % obj.id as I said in my original message. -- DR. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---