]> saetta.ns0.it Git - rust/zakform/commitdiff
Escaped quote on field values. master
authorAndrea Zagli <azagli@libero.it>
Sat, 25 Feb 2023 10:29:23 +0000 (11:29 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 25 Feb 2023 10:29:23 +0000 (11:29 +0100)
src/lib.rs

index 764c1b1867cff609df4b395191a74cbc21f4be8b..2f3bd8c574616db4b55fab9267b99f67c850f628 100644 (file)
@@ -54,7 +54,7 @@ impl Field {
                        FType::Text => {
                                f.tmpl.add_raw_template("field", r#"{% if label %}<div class="mb-3">
  <label for="{{ name }}" class="form-label">{{ label }}</label>{% endif %}
- <input type="text" class="form-control{% if help %} is-invalid{% endif %}" name="{{ name }}" id="{{ name }}" {% if value %} value="{{ value }}" {% endif %} {% if disabled %} readonly {% endif %} {% if maxlen > 0 %}maxlength="{{ maxlen }}"{% endif %} {% if invisible %}style="display: none;"{% endif %}/>
+ <input type="text" class="form-control{% if help %} is-invalid{% endif %}" name="{{ name }}" id="{{ name }}" {% if value %} value="{{ value | replace(from='"', to="&quot;") }}" {% endif %} {% if disabled %} readonly {% endif %} {% if maxlen > 0 %}maxlength="{{ maxlen }}"{% endif %} {% if invisible %}style="display: none;"{% endif %}/>
  {% if help %}<div id="helpBox_{{ name }}_" class="invalid-feedback">{{ help }}</div>{% endif %}
  {% if label %}</div>{% endif %}"#);
                        },
@@ -63,7 +63,7 @@ impl Field {
 
                                f.tmpl.add_raw_template("field", r#"{% if label %}<div class="mb-3">
  <label for="{{ name }}" class="form-label">{{ label }}</label>{% endif %}
- <textarea class="form-control{%if help %} is-invalid{% endif %}" name="{{ name }}" id="{{ name }}" rows="{{ rows }}">{{ value }}</textarea>
+ <textarea class="form-control{%if help %} is-invalid{% endif %}" name="{{ name }}" id="{{ name }}" rows="{{ rows }}">{{ value | replace(from='"', to="&quot;") }}</textarea>
  {% if help %}<div id="helpBox_{{ name }}_" class="invalid-feedback">{{ help }}</div>{% endif %}
  {% if label %}</div>{% endif %}"#);
                        },