I have a view function:
@login_required def myview(): # do something # respond something pass
How can I specify the exact URL f
you can also take url from view
for example
path('login/', login_view, name='login_name'),
then decoratorwill be
@login_required(login_url='login_name')