Browse Source

Quick & dirty readonly input removal

Removed useless readonly property on some fields
Yann Weber 7 years ago
parent
commit
1c716173be
1 changed files with 1 additions and 2 deletions
  1. 1
    2
      plugins/webui/templates/admin/editable_component.html

+ 1
- 2
plugins/webui/templates/admin/editable_component.html View File

@@ -21,8 +21,7 @@
21 21
             {% set l_classe = field.allowed_classes %}
22 22
             <p> Please enter uids to instances of {{ l_classe.__name__ }} separated by commas </p>
23 23
         {% else %}
24
-            <input id="{{fieldname}}" class="form-control" name="field_input_{{fieldname}}" type="text" value="{{sval}}" readonly >
25
-            <p> If you want to update this field, please do it in child objects</p>
24
+            <input id="{{fieldname}}" class="form-control" name="field_input_{{fieldname}}" type="text" value="{{sval}}">
26 25
         {% endif %}
27 26
 	{% else %}
28 27
 		Unsupported base type "{{field.base_type}}" <br>

Loading…
Cancel
Save