Fix last emails

This commit is contained in:
KenwoodFox
2025-12-03 18:54:02 -05:00
parent 2836d5954e
commit c97b06e07b
3 changed files with 99 additions and 6 deletions

View File

@@ -49,6 +49,16 @@
border-radius: 3px;
}
.file-list li a {
color: #0066cc;
text-decoration: none;
font-weight: bold;
}
.file-list li a:hover {
text-decoration: underline;
}
.footer {
text-align: center;
color: #666;
@@ -84,8 +94,11 @@
<div class="info-box">
<strong>Uploaded Files ({{ files|length }}):</strong>
<ul class="file-list">
{% for file in files %}
<li>{{ file.original_filename }} ({{ file.file_size|filesizeformat }})</li>
{% for file_url_data in file_urls %}
<li>
<a href="{{ file_url_data.url }}" target="_blank">{{ file_url_data.file.original_filename }}</a>
({{ file_url_data.file.file_size|filesizeformat }})
</li>
{% endfor %}
</ul>
</div>