4
votes
How to get a list of all users with a specific permission group in Django
I think for group permissions, permissions are stored against groups, and then users have groups linked to them. So you can just resolve the user - groups relation.
e.g.
51 …
0
votes
Django models - Does django cache former queries?
If you change the model definitions in django, you need to re-apply your changes to the database. If you can manually drop the tables, you can restore the structure with manage.py syncdb …
