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 3350308
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T01:46:16+00:00 2026-05-18T01:46:16+00:00

@login_required def post_review(request): if request.method == ‘POST’: formset = ReviewForm(request.POST) if formset.is_valid(): formset.save(commit=False) #formset.author

  • 0
@login_required
def post_review(request):
    if request.method == 'POST':
        formset = ReviewForm(request.POST)
        if formset.is_valid():
            formset.save(commit=False)
            #formset.author = User.objects.get(pk=int(request.user.id))
            formset.pub_date = datetime.datetime.now
            formset.save()
            return HttpResponseRedirect(reverse(review_index))
    else:
        formset = ReviewForm()
    return render_to_response("review/post_review.html",
        {"formset": formset}, context_instance=RequestContext(request),
    )

I have this view, I want to auto set the current logged-in user in my review form author field. But I dont know how. Any ideas/hint pls?
Below is my form:

class ReviewForm(ModelForm):
    class Meta:
        model = Review
        fields = ('title','category', 'body', )
        widgets = {
            'body': Textarea(attrs={'cols': 60, 'rows': 20}),
        }
  • 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-18T01:46:16+00:00Added an answer on May 18, 2026 at 1:46 am

    I’ve always done this by accepting a new kwarg in my form’s __init__, and saving the value until save-time.

    class ReviewForm(ModelForm):
        class Meta:
            model = Review
            fields = ('title','category', 'body', )
            widgets = {
                'body': Textarea(attrs={'cols': 60, 'rows': 20}),
            }
    
        def __init__(self, *args, **kwargs):
            self._user = kwargs.pop('user')
            super(ReviewForm, self).__init__(*args, **kwargs)
    
        def save(self, commit=True):
            inst = super(ReviewForm, self).save(commit=False)
            inst.author = self._user
            if commit:
                inst.save()
                self.save_m2m()
            return inst
    

    And then in my view:

    def post_review(request):
        # ... snip ...
        if request.method == 'POST'
          form = ReviewForm(request.POST, user=request.user)
          if form.is_valid():
             form.save()
             return HttpResponseRedirect('/thanks/') #or whatever the url
          else:
             # Don't forget to add user argument
             form = ReviewForm(user=request.user)
        # ... snip ...
    

    If Review.author isn’t a required field, you can add a second value to the kwargs.pop call to set a default, like None. Otherwise, if the user kwarg isn’t provided, it’ll raise an error, effectively making it a required argument.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I update an object from a formset using request.POST ? Here is
I am trying to save a formset but it seems to be bypassing is_valid()
I have a view function: @login_required def myview(): # do something # respond something
I have the following piece of code def show unless logged_in? login_required return end
I have a class called User with static function loginRequired(), which returns false if
i want to save data in two table mysql, that was nice, but now
I've written the following custom formset, but for the life of me I don't
I wrote a decorator that looks like this def login_required_message(*args, **kwargs): kwargs.setdefault('message', You must
First, context: I'm trying to create a command-line-based tool (Linux) that requires login. Accounts
Is there an app or way to browse a directory that requires different login

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.