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

  • Home
  • SEARCH
  • 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
  • 1 View
  • 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

My views.py: @login_required def some_views(request): if request.method == 'POST': form = AddressCreateFrom(request.POST) if form.is_valid():
I have used the inlineformset, the views method is as follows: @login_required def patron_edit_phone(request,
How can I update an object from a formset using request.POST ? Here is
I'm using the standard authentication form. It's clean method looks like this : def
I am attempting to invoke /save_calendar, mapped to pim_calendar.save_calendar(), which begins: @csrf_exempt @login_required def
I'm working on some legacy Django code. I have two nearly-identical views: @login_required def
On pages 183 and 184 there is the following code : def edit_snippet(request, snippet_id):
Is there any difference in using login_required decorator in urls.py and in views.py ?
Is there a way I can apply the login_required decorator to an entire app?
In a controller in my Rails app, I can do this: before_filter :login_required, :except

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.