put file list inside details tag

main
xenofem 2022-05-24 17:35:49 -04:00
parent 62e6d64253
commit 52158d25e9
2 changed files with 17 additions and 14 deletions

View File

@ -175,8 +175,9 @@ tr.unavailable td.file_download {
margin-right: auto;
}
#download_contents h3 {
margin-bottom: 0;
#download_contents summary {
font-size: 24px;
font-weight: bold;
}
#download_contents table {

View File

@ -26,18 +26,20 @@
{% match file.contents %}
{% when Some with (files) %}
<div id="download_contents" class="section">
<h3>Contents</h3>
<table><tbody>
{% let offsets = offsets.as_ref().unwrap() %}
{% for f in files %}
<tr class="{% if offsets.get(loop.index0.clone()).unwrap().clone() > available %}unavailable{% endif %}">
<td class="file_size">{{ bytesize::to_string(f.size.clone(), false).replace(" ", "") }}</td>
<td class="file_name">{{ f.name }}</td>
<td class="file_download"><a class="download_button" href="download?code={{ code }}&download={{ loop.index0 }}"></a></td>
<td class="file_unavailable"></td>
</tr>
{% endfor %}
</tbody></table>
<details>
<summary>Show file list</summary>
<table><tbody>
{% let offsets = offsets.as_ref().unwrap() %}
{% for f in files %}
<tr class="{% if offsets.get(loop.index0.clone()).unwrap().clone() > available %}unavailable{% endif %}">
<td class="file_size">{{ bytesize::to_string(f.size.clone(), false).replace(" ", "") }}</td>
<td class="file_name">{{ f.name }}</td>
<td class="file_download"><a class="download_button" href="download?code={{ code }}&download={{ loop.index0 }}"></a></td>
<td class="file_unavailable"></td>
</tr>
{% endfor %}
</tbody></table>
</details>
</div>
{% else %}
{% endmatch %}