dominno / django-moderation

django-moderation is reusable application for Django framework, that allows to moderate any model objects.
BSD 3-Clause "New" or "Revised" License
269 stars 91 forks source link

So does this even work? #75

Closed joshuajonah closed 11 years ago

joshuajonah commented 11 years ago

I've tried multiple different models with moderation and ALL of them automatically end up in the model's table as well as the moderation table.

class TestimonialModerator(GenericModerator):
    notify_user = False
    notify_moderator = True
    auto_approve_for_superusers = False
    auto_approve_for_staff = False
    visible_until_rejected = False

I'm being pretty verbose and these show up right away, does anybody actually have this package working? I see new feature updates for 1.5, but what's the point if it doesn't even work?

artscoop commented 11 years ago

Hi, This package didn't work until I started using GenericModerator.visibility_column The visibility_column should point to a models.BooleanField defaulting to False.