I have an application that allows the user to filter certain things for users with different permissions.
Django 1.1 for some reason does not seem to recognize them.
I have a group that is called corporateand permissionsprovided as needed.
now in my template i get the following.
{% if perms.corporate%}
... show next {% else%}
... show something else
{% endif%}
why doesn't this give the information i want?
ApPeL source
share