diff options
author | Michael Elkins <melkins@tislabs.com> | 2013-03-05 00:16:24 +0000 |
---|---|---|
committer | Michael Elkins <melkins@tislabs.com> | 2013-03-05 00:16:24 +0000 |
commit | 50386a567a5843a45595b89fcbe735acf4b16f68 (patch) | |
tree | ed5bce00ff83110e33abbda1247cb0a9cd53be94 /rpkid | |
parent | e3c9fc9595e1b0f3d18a558ee8ad190609a2f884 (diff) |
field label was not being expanded in the app_form.html template
svn path=/trunk/; revision=5104
Diffstat (limited to 'rpkid')
-rw-r--r-- | rpkid/rpki/gui/app/templates/app/bootstrap_form.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/rpki/gui/app/templates/app/bootstrap_form.html b/rpkid/rpki/gui/app/templates/app/bootstrap_form.html index 935a43a4..c6fd5424 100644 --- a/rpkid/rpki/gui/app/templates/app/bootstrap_form.html +++ b/rpkid/rpki/gui/app/templates/app/bootstrap_form.html @@ -10,7 +10,7 @@ {{ field }} {% else %} <div class="control-group {% if field.errors %}error{% endif %}"> - <label class="control-label" for="field.html_name">{{ field.label }}</label> + <label class="control-label" for="{{ field.html_name }}">{{ field.label }}</label> <div class="controls"> {{ field }} {% if field.help_text %} |