~netlandish/django-wiki

f940b2dfdf9eab464316db2c388e1f5d1f2544e6 — Benjamin Balder Bach 4 years ago 72609e6 + a7fadf5
Merge pull request #1014 from tim3towers/master

Fix can't delete Article with USE_THOUSAND_SEPARATOR = True #1013
2 files changed, 2 insertions(+), 1 deletions(-)

M docs/release_notes.rst
M src/wiki/templates/wiki/delete.html
M docs/release_notes.rst => docs/release_notes.rst +1 -0
@@ 25,6 25,7 @@ Fixed

* Python 3.7 issue with notifications plugin main view ``/_plugin/notifications/`` :url-issue:`1000` (Mads Jensen)
* Broken Delete and Deleted pages :url-issue:`976` (Benjamin Bach)
* Can't delete article with ``USE_THOUSAND_SEPARATOR = True`` :url-issue:`1014` (tim3towers)


Changed

M src/wiki/templates/wiki/delete.html => src/wiki/templates/wiki/delete.html +1 -1
@@ 60,7 60,7 @@

{% addtoblock "js" %}
<script type="text/javascript">
  $('#id_revision').val('{{ article.current_revision.id }}');
  $('#id_revision').val('{{ article.current_revision.id|safe }}');
</script>
{% endaddtoblock %}