Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/scriptform/commit/cd64098a24ebf0facfb628849a8c08a8ab1c3a8a?style=unified&whitespace=ignore-eol You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix bug where each radio button would have the same value.

pull/7/head 1.5
Ferry Boender 6 years ago
parent e0c53eb9ad
commit cd64098a24
  1. 2
      src/formrender.py

@ -181,7 +181,7 @@ class FormRender(object):
if o_value == value:
checked = 'checked'
radio_elems.append(tpl_option.format(name=name,
value=value,
value=o_value,
checked=checked,
label=o_label,
classes=classes,

Loading…
Cancel
Save