tags:

views:

29

answers:

1

I have a view function:

@login_required
def myviev():
    do something
    responce something

How can I specify the exact url for this view function to be redirected?

+4  A: 

LOGIN_URL in your settings

Bob