Re: Dev & Production difference: escaping html in admin

2008-11-01 Thread Ramiro Morales
On Sat, Nov 1, 2008 at 4:21 PM, Alexey Moskvin <[EMAIL PROTECTED]> wrote: > > Hi, I have developer (win) & production (debian) installations of > Django 0.97. There is not such thing as a 0.97 release, are you sure you are using the same SVN revisions in both environments? > [...] > But on my

Dev & Production difference: escaping html in admin

2008-11-01 Thread Alexey Moskvin
Hi, I have developer (win) & production (debian) installations of Django 0.97. There is one difference in admin app. I have a photogallery, and Picture model has this method: def show_thumb(self) : return '%s' % (self.get_image_url(), self.get_image_thumb_url(), self.image) also