Hello everybody, I have a question about permissions, and would like your opinion about which approach to take.
Basically, I have a small CMS/publishing web app I have been working on for a few weeks. It is coming together nicely (though getting LaTeX to play nice took longer than I expected). Anyway, there is a notion of a "published" article, a "draft", and so on. I would like to create permissions that allow staff members to view any article (published or draft, say). But obviously, I would like everybody to be able to see a published article. I do not want them to see drafts. I can do that pretty easily, for a single view. But lots of views are going to be dealing with these permissions, including a listings view, which will only list articles a user has permission to see. I had tried a decorator approach, but that fell apart when I tried to make this listings page. I would really like to not have to repeat myself. What sorts of approaches do you guys use? Just calling a boolean method in the scope of each view? --~--~---------~--~----~------------~-------~--~----~ 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 django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---