diff --git a/server/src/uds/static/adm/js/gui-fields.js b/server/src/uds/static/adm/js/gui-fields.js index d685b89e2..6abd14d05 100644 --- a/server/src/uds/static/adm/js/gui-fields.js +++ b/server/src/uds/static/adm/js/gui-fields.js @@ -18,7 +18,7 @@ label: f.gui.label, length: f.gui.length, multiline: f.gui.multiline, - rdonly: editing ? f.gui.rdonly : false, // rdonly applies just to editing + readonly: editing ? f.gui.rdonly : false, // rdonly applies just to editing required: f.gui.required, tooltip: f.gui.tooltip, type: f.gui.type, diff --git a/server/src/uds/templates/uds/admin/tmpl/fld/checkbox.html b/server/src/uds/templates/uds/admin/tmpl/fld/checkbox.html index 55a24b9b9..8ee37fb87 100644 --- a/server/src/uds/templates/uds/admin/tmpl/fld/checkbox.html +++ b/server/src/uds/templates/uds/admin/tmpl/fld/checkbox.html @@ -3,7 +3,7 @@ {% block field %}
{% verbatim %} - +
{% endverbatim %} {% endblock %} \ No newline at end of file diff --git a/server/src/uds/templates/uds/admin/tmpl/fld/choice.html b/server/src/uds/templates/uds/admin/tmpl/fld/choice.html index 660d105df..29358de0d 100644 --- a/server/src/uds/templates/uds/admin/tmpl/fld/choice.html +++ b/server/src/uds/templates/uds/admin/tmpl/fld/choice.html @@ -2,7 +2,7 @@ {% load i18n %} {% block field %} {% verbatim %} - {{#each values }} {{/each}} diff --git a/server/src/uds/templates/uds/admin/tmpl/fld/numeric.html b/server/src/uds/templates/uds/admin/tmpl/fld/numeric.html index a73d3c89c..30c297842 100644 --- a/server/src/uds/templates/uds/admin/tmpl/fld/numeric.html +++ b/server/src/uds/templates/uds/admin/tmpl/fld/numeric.html @@ -2,6 +2,6 @@ {% load i18n %} {% block field %} {% verbatim %} - + {% endverbatim %} {% endblock %} \ No newline at end of file diff --git a/server/src/uds/templates/uds/admin/tmpl/fld/text.html b/server/src/uds/templates/uds/admin/tmpl/fld/text.html index 6b0956f30..bde012f15 100644 --- a/server/src/uds/templates/uds/admin/tmpl/fld/text.html +++ b/server/src/uds/templates/uds/admin/tmpl/fld/text.html @@ -2,6 +2,6 @@ {% load i18n %} {% block field %} {% verbatim %} - + {% endverbatim %} {% endblock %} \ No newline at end of file