Re: Image manipulation

2007-08-28 Thread Iapain
You should ask this question in Django-User group. This is a django core developer group. On Aug 29, 12:14 am, Slava Shklyar <[EMAIL PROTECTED]> wrote: > I need to add dynamic text to animated GIF images. > What is a best way to do it? > > Thanks. --~--~-~--~~~---~--

Re: Proposal: Generic Pagination

2007-08-27 Thread Iapain
> http://www.djangosnippets.org/snippets/378/ Not really > http://www.djangosnippets.org/snippets/394/ bit closer (should have used query string ?p=1 instead of /page/1) But still I prefer the way django.contrib.admin is doing. The core question is it should be included in django standard packag

Proposal: Generic Pagination

2007-08-27 Thread Iapain
Introduction: Most of the time ObjectionPaginator server incomplete functionality because some one have to generate a page bar[] in template. However some a kind of template tag would allow you to create a small tiny hack but not a generic one. I just looked inside django.contrib.admin and I thin

custom element in search_field [admin class]

2007-06-05 Thread Iapain
Hi, I was wondering if we can specify our own custom element like function in *search_field* in Admin class. e.g class Student(models.Model): name = models.CharField(maxlength=255) class Admin: search_list = ['name', 'my_custom_list_or_object_row'] def my_custom_list_or_object_row(se