Initial work at integrating the risk assessment

#136. No clever database structure as yet...
This commit is contained in:
2020-05-28 18:55:22 +01:00
parent 1b1775d0f5
commit b75b6a6736
8 changed files with 317 additions and 45 deletions

View File

@@ -0,0 +1,10 @@
<label for="{{ formitem.id_for_label }}"
class="col-sm-8 control-label">{{label}}{% if note %}<br><small>{{note}}</small>{%endif%}</label>
<div class="col-4 pb-3">
{% for radio in formitem %}
<div class="custom-control custom-radio">
{{ radio.tag }}
<label class="custom-control-label" for="{{ radio.id_for_label }}">{{ radio.choice_label }}</label>
</div>
{% endfor %}
</div>