Howto create a custom Q object to implement fulltext

2008-05-21 Thread Antares
I've been a while trying to implement full-text search under PostgreSQL, I created some code that works, but is not optimal. I asked Malcolm Tredinnick and he told me: "In fact, thinking about this a bit more, it might even be possible to do it all via a custom Q-like object. You might not need t

Newforms fields and widgets

2008-04-23 Thread Antares
Hello, I'm developing a custom admin zone named eadmin, and I hope one day becomes good enough to be part of django. I'm not sure if this group is the right place, or maybe I should post into django-users. As I'm developing using django core features I think this is the right place. I have a form

Hacking the admin

2007-12-08 Thread Antares
Hello, In almost all my sites, I'm using a moderation zone, which it's pretty much the same as the admin zone but I have per-row permissions. Usually I build multiuser sites, and in my models I always add: from django.contrib.auth.models import User # This can be: Published, Pending, Rejected...

Re: A complicated question

2007-11-20 Thread Antares
On 20 nov, 17:40, "Jacob Kaplan-Moss" <[EMAIL PROTECTED]> wrote: > Hi Antares -- > > Please direct questions of this nature to django-users; django-dev is > used to discuss the development of Django itself, not to answer usage > questions. > > Thanks! >

A complicated question

2007-11-20 Thread Antares
Hello, I'm programing a kind of admin zone for users, where users can add, manage and delete objects. I want to do it generic, but I have a big problem now. Imagine these models: from django.contrib.auth.models import User class Library ( models.model ): library_name = models.CharField(..)