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
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
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...
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!
>
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(..)