IR_ESG_REPORTER2 / templates:sasb.html.j2
Corin1998's picture
Upload 17 files
5823ed6 verified
raw
history blame contribute delete
464 Bytes
{% extends "base.html.j2" %}
{% block body %}
<h1>SASB Report({{ meta.fiscal_year }}</h1>
<p>{{ sections.ceo_message }}</p>
<table border="1" cellspacing="0" cellpadding="6">
<tr><th>指標</th><th></th><th>単位</th><th>備考</th></tr>
{% for row in esg_table %}
<tr><td>{{ row.display }}</td><td>{{ row.value }}</td><td>{{ row.unit }}</td><td>{{ row.notes }}</td></tr>
{% endfor %}
</table>
<p>{{ sections.risk_opportunity }}</p>
{% endblock %}