I've added permission to my model and I would like to create a group in admin that uses this permission.
The problem is that the new permission is not listed in the permissions list.
is there something I need to do to add it to that list?
class Meta:
permissions = (
("add_remove_job", "Can add/remove jobs"),
)
SOLUTION: It is a known limitation of South, the solution is to do syncdb --all