Opened 15 years ago

Closed 15 years ago

#11389 closed (duplicate)

contrib.auth.login should allow to replace AuthenticationForm

Reported by: anonymous Owned by: nobody
Component: contrib.auth Version: dev
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Hello,

I'm using django for quite some time. For the first time I needed a custom login (other fields besides login and password) and also a custom auth backend.

I had to do a custom login with is basically a copy of contrib.auth.views.login with AuthenticationForm replaced by my own form.

The definition of contrib.auth.views.login should be:
def login(request, template_name='registration/login.html', redirect_field_name=REDIRECT_FIELD_NAME, authentication_form=AuthenticationForm):

so we could just define on urls.py with form class we would like to use.

Change History (1)

comment:1 by Alex Gaynor, 15 years ago

Resolution: duplicate
Status: newclosed

This ticket is a dulicate.

Note: See TracTickets for help on using tickets.
Back to Top