<section class="panel" id="rastreabilidade" aria-label="Rastreabilidade">
<h2>Rastreabilidade</h2>
{% if !traceability_items.is_empty() %}
<table>
<thead><tr><th>Campo</th><th>Valor</th></tr></thead>
<tbody>
{% for item in traceability_items %}
<tr><td>{{ item.key }}</td><td><code>{{ item.value }}</code></td></tr>
{% endfor %}
</tbody>
</table>
{% else %}
<p class="muted">Nenhum dado de rastreabilidade disponÃvel.</p>
{% endif %}
</section>