Files
Mujoco_WASM/python/mujoco/sysid/report/templates/group.html
T
Copybara-Service 3ec09f7296 Merge pull request #3079 from aftersomemath:sysid-pr
PiperOrigin-RevId: 868229512
Change-Id: I790bc08fc8b0745583a2f92d9ee2c5a19ba558ea
2026-02-10 11:04:12 -08:00

14 lines
500 B
HTML

<div class="group-section">
{% for child in child_sections %}
<details class="group-item" open
style="margin-bottom: 1rem; border: 1px solid var(--border-color); border-radius: 4px; padding: 1rem;">
<summary style="font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; border-bottom: none;">
{{ child.title }}
</summary>
<div class="group-content">
{{ child.content | safe }}
</div>
</details>
{% endfor %}
</div>