> I'm trying to find a solution to my problem, but no luck or (maybe) > I'm too dumb to find it by myself. Anyway, what if i need to set up > some kind of "superuser approval system"? > > For example, I want my publisher to write and article, which will be > stored in the db as "unapproved" and than I want my superuser to read > it and approve if it's good, so it can be viewed on the site only > AFTER the approval stuff. > > Any suggestion (if not solution ;-) ) would be greatly appreciated!
Cannot you just add an extra column to your Article model, that sets a flag 'approved'. Could be a boolean field, or a small integer field (in case you want to have more than two options, like 'unapproved', 'under consideration', 'approved'). Use the 'choices' option to limit the options to just the relevant values. Or did I miss the point of your question? Evert --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---