diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-01-23 20:02:02 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-01-23 20:02:02 +0100 |
commit | 1fdc03095320dbe5b73afb8e695e46ee9982258d (patch) | |
tree | f937cee9d5f7f6c72cfd2545f7a427b54f231514 | |
parent | 1c5c021e04f01e0a9753bfac1e4439e2d69f94bf (diff) | |
download | Ishtar-1fdc03095320dbe5b73afb8e695e46ee9982258d.tar.bz2 Ishtar-1fdc03095320dbe5b73afb8e695e46ee9982258d.zip |
Fix inline_formset id in template
-rw-r--r-- | ishtar_common/templates/blocks/inline_formset.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/templates/blocks/inline_formset.html b/ishtar_common/templates/blocks/inline_formset.html index 4d4042985..9c1daad28 100644 --- a/ishtar_common/templates/blocks/inline_formset.html +++ b/ishtar_common/templates/blocks/inline_formset.html @@ -1,6 +1,6 @@ {% load i18n %} {% if extra_formset.non_form_errors %}<div class='errors'>{{extra_formset.non_form_errors.as_ul}}</div>{% endif %} - {% if header %}<table class='inline-table' id='{{formset}}'> + {% if header %}<table class='inline-table' id='{{formset.prefix}}'> <caption>{% trans caption %}</caption> <thead> <tr>{% for field in formset.0.visible_fields%} |