Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6026175
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T04:24:28+00:00 2026-05-23T04:24:28+00:00

How would I pass a user object or a request to my form for

  • 0

How would I pass a user object or a request to my form for validation?

For example, I want to be able to do something like this —

class Form(forms.Form):
    ...
    def clean(self)
        user = request.user   # how to get request.user here?
        user = User           # how to pass the actual User object?

Thank you.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T04:24:29+00:00Added an answer on May 23, 2026 at 4:24 am

    Just pass it into the constructor and store it as an instance variable:

    class MyForm(forms.Form):
        def __init__(self, *args, **kwargs):
            self.request = kwargs.pop("request")
            super(MyForm, self).__init__(*args, **kwargs)
    
        def clean(self):
            print self.request.user
            ...
    

    In your view:

    form = MyForm(..., request=request)
    

    And if using a class-based view (a CreateView in this example):

    class MyCreateView(CreateView):
    
        ... 
    
        def get_form_kwargs(self):
            kwargs = super(MyCreateView, self).get_form_kwargs()
            kwargs.update({'request': self.request})
            return kwargs
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When using call_user_func_array() I want to pass a parameter by reference. How would I
I would like to pass an argument(s) to a method being defined using define_method,
I would like to pass an x amount of geo-locations to the Google Maps
I would like to pass a reference of a method into another method and
In PL/SQL, I would like to pass in a source schema as a parameter
I have a form that edits an instance of my model. I would like
I'm implementing a REST-style interface and would like to be able to create (via
What I would really like to do is create an optional text to pass
In a WinForms UserControl, I would pass data to the main GUI thread by
Which method would you recommend to pass data from a child view back to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.