From b3059dd3e871de3bc34fa3ee7ab9730c034f22df Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Fri, 11 Jun 2010 17:29:46 -0500 Subject: Remove action when submitting to same URL It looks like the `action="."` business was screwing up some browsers, notably lynx and links. We don't need it as the default is to submit to the same page anyway, so kill this gunk and see if it fixes a login CSRF issue. Signed-off-by: Dan McGee --- templates/general_form.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'templates/general_form.html') diff --git a/templates/general_form.html b/templates/general_form.html index 93e73ac..12b3546 100644 --- a/templates/general_form.html +++ b/templates/general_form.html @@ -8,7 +8,7 @@ {% if description %}{{description}}{% endif %} -
{% csrf_token %} + {% csrf_token %}
{% for field in form %}


-- cgit v1.2.3-24-g4f1b