Hi
I am trying to build a CMS where particular department users can only
change/update/delete their pages. For example HR department()
staff1(user1[HRGroup]) creates an entry(About HR) then
staff2(user2[HRGroup]) must be able to change About HR page BUT IT
department(ITGroup) staff(user3[ITGroup]) can't change About HR page.
I am using django admin, User and Group where Group maintain
departments.
Here is my model.py
class Entry( models.Model ):
departement = models.ForeignKey(Group)
title = models.CharField(maxlength=200)
....
Is this possible in django admin?
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
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.