Re: list_filter and sing urls ..

2006-07-11 Thread Spock
Thanks ! ..that is what I need :) I'm always wonder how You find time for activity on this list ...36h day timezone ? :P --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group,

Re: list_filter and sing urls ..

2006-07-11 Thread Adrian Holovaty
On 7/11/06, Spock <[EMAIL PROTECTED]> wrote: > def url_to_contract(self): > return '%s" % (self.id,self.owner) > >class Admin: > list_filter = ( 'owner', 'url_to_contract') > > And when page is rendered I'dont get html link only string " href..and so on" > Is there way to

list_filter and sing urls ..

2006-07-11 Thread Spock
Hello, I'm trying to build application based ond admin interface but here is problem :) If i create function that return html it is escaped when used in list_filter Example class Deal(Model): owner = CharField(maxlength=64) bla bla ... def url_to_contract(self): return