On Jun 13, 2006, at 7:58 AM, [EMAIL PROTECTED] wrote: > > I have a problem then. > I just need to test if a user have permission to edit a field in > Admin. >
Then in the view that calls the template, you determine if the user is authorized to edit the field. You can test the authorization in the view to prevent the user from seeing the template or test it in the template to prevent the user from editing the field. Seriously, you don't want to hard code permissions into a model. Whenever the permission requirements change you'll have to change your model. Take a look at (specifically the Permissions section) http://www.djangoproject.com/documentation/authentication/ Don --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---