Opened 13 years ago

Closed 13 years ago

#14915 closed (invalid)

remove quotes around 'django.contrib.auth.views.login'

Reported by: neill@… Owned by: nobody
Component: Documentation Version: 1.2
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

stumbled across this while implementing auth:

the code block for login form for views.login() has quote around the argument for the url template tag

<form method="post" action="{% url 'django.contrib.auth.views.login' %}">

should be

<form method="post" action="{% url django.contrib.auth.views.login %}">

Change History (1)

comment:1 by neill <neill@…>, 13 years ago

Resolution: invalid
Status: newclosed

woops sorry. looking at wrong docs. shoulda been on 1.2

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