Django : How to exclude form field if the user is staff?

前端 未结 2 577

How to exclude form fields if the user is not staff ? I tried this but didn\'t work , giving an error :

global name \'user\' is not defined



        
2条回答
  •  [愿得一人]
    2021-02-20 05:58

    You need to pass it the user instance from your request - the model form doesn't have access to it.

    my_form = PostForm(user=request.user)

    Then, in your __init__:

    def __init__(self, *args, **kwargs):
        published = kwargs.pop('published', None)
        user = kwargs.pop('user', None)
        super(PostForm, self).__init__(*args, **kwargs)
        if not user.is_staff:
           del self.fields['published']
    

提交回复
热议问题