diff options
author | Filipp Lepalaan <filipp@mac.com> | 2015-10-08 10:48:36 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2015-10-08 10:48:36 +0300 |
commit | 2a7251afa0438b1472c66932a4c22d378ae15c28 (patch) | |
tree | ce9752d1f44369bb5f2b372982e953911303c056 /servo/templates/admin | |
parent | 88e291a6ed830f11671f04893031eec2291a6703 (diff) | |
download | Servo-2a7251afa0438b1472c66932a4c22d378ae15c28.tar.gz Servo-2a7251afa0438b1472c66932a4c22d378ae15c28.tar.bz2 Servo-2a7251afa0438b1472c66932a4c22d378ae15c28.zip |
Cleanup
Diffstat (limited to 'servo/templates/admin')
-rw-r--r-- | servo/templates/admin/statuses/remove.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/servo/templates/admin/statuses/remove.html b/servo/templates/admin/statuses/remove.html index 78385a6..1040017 100644 --- a/servo/templates/admin/statuses/remove.html +++ b/servo/templates/admin/statuses/remove.html @@ -2,15 +2,15 @@ {% load i18n %} {% block header %} - <h2>{% blocktrans with status.title as title %}Delete status "{{ title }}"?{% endblocktrans %}</h2> + {% blocktrans with status.title as title %}Delete status "{{ title }}"?{% endblocktrans %} {% endblock header %} {% block body %} - <p>{% trans "This action cannot be undone." %}</p> + {% trans "This action cannot be undone." %}</p> {% endblock body %} {% block footer %} - <form action="{{ action }}" method="post"> + <form action="{{ request.path }}" method="post"> {% csrf_token %} <button type="submit" class="btn btn-danger">{% trans "Delete" %}</button> </form> |