{% extends "layout.html" %} {% block body %}

Show and Update Hazard

{{ form.title(class="input-xlarge") }} {# #}
{{ form.text(class="input-xlarge", rows=10) }} {# #}
{{ form.submit_hazard(class="btn btn-success") }} {# #} Back to list
{{ form.show_hca_button }}
{% if show_hca %}
# CA {%- for pmvv in hca_list[0].pmvvs %} {{ pmvv.pmv.title }} {%- endfor %} Hazardous Too Late Too Early Not Provided {%- for hca in hca_list %} {% if not hca.hidden %}
{{ hca.id }} {{ hca.ca.title }} {%- for pmvv in hca.pmvvs %} {{ pmvv.text }} {%- endfor %} {%- for hazard in hca.cah %} [{{ hazard.id }}] {%- endfor %} {%- for hazard in hca.cah_tl %} [{{ hazard.id }}] {%- endfor %} {%- for hazard in hca.cah_te %} [{{ hazard.id }}] {%- endfor %} {%- for hazard in hca.cah_np %} [{{ hazard.id }}] {%- endfor %} {% endif %} {%- endfor %}
{% endif %} {% endblock %}