xingqiang's picture
update
2590409
raw
history blame contribute delete
933 Bytes
<div class="history-container">
<h2>历史记录</h2>
{% for report in reports %}
<div class="history-item">
<p><strong>报告ID:</strong> {{ report.report_id }}</p>
<p><strong>缺陷类型:</strong> {{ report.defect_type }}</p>
<p><strong>描述:</strong> {{ report.description }}</p>
<p><strong>创建时间:</strong> {{ report.created_at }}</p>
<h3>特征详情:</h3>
<ul>
<li>振幅: {{ report.features.振幅 }} ({{ report.features.振幅值|round(2) }})</li>
<li>分布范围: {{ report.features.分布范围 }} ({{ report.features.分布范围值|round(2) }})</li>
<li>衰减速度: {{ report.features.衰减速度 }} ({{ report.features.衰减速度值|round(2) }})</li>
<li>反射次数: {{ report.features.反射次数 }} ({{ report.features.反射次数值 }})</li>
</ul>
</div>
{% endfor %}
</div>