mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-19 14:32:16 +00:00
15 lines
675 B
HTML
15 lines
675 B
HTML
<div class="card {% if event.riskassessment and event.eventchecklist %}
|
|
border-success
|
|
{% else %}
|
|
border-warning
|
|
{% endif %}">
|
|
<div class="card-header">Health & Safety Details</div>
|
|
<div class="card-body">
|
|
<h5>Risk Assessment:</h5>
|
|
{% include 'partials/hs_status.html' with event=event object=event.riskassessment view='ra_detail' edit='ra_edit' create='event_ra' %}
|
|
<hr>
|
|
<h5>Event Checklist:</h5>
|
|
{% include 'partials/hs_status.html' with event=event object=event.eventchecklist view='ec_detail' edit='ec_edit' create='event_ec' %}
|
|
</div>
|
|
</div>
|