Reverted most of [16051], because it was thoroughly incorrect (whatever some validator says)
Refs #16154 git-svn-id: http://code.djangoproject.com/svn/django/trunk@16330 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
{% if form.errors %}<h1>Please correct the following errors</h1>{% else %}<h1>Submit</h1>{% endif %}
|
{% if form.errors %}<h1>Please correct the following errors</h1>{% else %}<h1>Submit</h1>{% endif %}
|
||||||
|
|
||||||
<form action="." method="post">{% csrf_token %}
|
<form action="" method="post">{% csrf_token %}
|
||||||
<table>
|
<table>
|
||||||
{{ form }}
|
{{ form }}
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
<p>Security hash: {{ hash_value }}</p>
|
<p>Security hash: {{ hash_value }}</p>
|
||||||
|
|
||||||
<form action="." method="post">{% csrf_token %}
|
<form action="" method="post">{% csrf_token %}
|
||||||
{% for field in form %}{{ field.as_hidden }}
|
{% for field in form %}{{ field.as_hidden }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
<input type="hidden" name="{{ stage_field }}" value="2" />
|
<input type="hidden" name="{{ stage_field }}" value="2" />
|
||||||
@@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
<h1>Or edit it again</h1>
|
<h1>Or edit it again</h1>
|
||||||
|
|
||||||
<form action="." method="post">{% csrf_token %}
|
<form action="" method="post">{% csrf_token %}
|
||||||
<table>
|
<table>
|
||||||
{{ form }}
|
{{ form }}
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
Reference in New Issue
Block a user