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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T06:58:22+00:00 2026-05-24T06:58:22+00:00

I try to write a custom decorator in Django. I want to redirect users

  • 0

I try to write a custom decorator in Django.
I want to redirect users to custom login page if they are not logged in via that page.
I have written the decorator and I debugged it. Although it works well if user is not logged in, after user logged in it gives error as

The view APPNAME.views.home didn't return an HttpResponse object.

You can find my code below. Why my decorator simply jump to return wraps(func)(inner_decorator) section after authentication in private alfa page ?

Thanks

def private_alfa_required():    
def decorator(func):
    def inner_decorator(request,*args, **kwargs):
        if 'isPrivateAlfaUser' not in request.session or request.session['isPrivateAlfaUser'] != True:
            return render_to_response('homepage.html') 

    return wraps(func)(inner_decorator)

return decorator

@private_alfa_required()
def home(request):
 .....



def home2(request):
  .....
  • 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-24T06:58:23+00:00Added an answer on May 24, 2026 at 6:58 am

    Because you haven’t actually called the view function if your test succeeds.

    if 'isPrivateAlfaUser' not in request.session or request.session['isPrivateAlfaUser'] != True:
        return render_to_response('homepage.html') 
    else:
        return func(request, *args, **kwargs)
    

    As a secondary note, you don’t need the outer level of wrapper here because your decorator doesn’t take any arguments. If you drop that, you also need to drop the () on the decorator itself.

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

Sidebar

Related Questions

I try to write a simple Markdown parser in JavaScript. Therefore I want to
I try to write a macro in clojure that sets up a namespace and
I'm trying to write a simple custom storage system. I need only that my
I'm attempting to write a custom widget and I want to use existing UI
I'm want to parse a custom string format that is persisting an object graphs
i try to write a custom list-binding. This is what i have so far:
I write a custom dialog and try to get some data from its parent
I try to write KSH script for processing a file consisting of name-value pairs,
I try to write to a large file, but it seems like it does
I try to write a simple client/server application (all application is a bluetooth service

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.