🔒 Repository is read-only – file editing is disabled.
12345678910111213
{% extends "base.html" %}{% block title %}Sources{% endblock %}
{% block content %}
<div class="card">
<div class="card-header"><h2> Źródła</h2></div>
<table style="width:100%">
<tr><th>Plik</th><th>Rozmiar</th></tr>
{% for f in files %}
<tr><td><a href="/sources/{{ f.name }}">{{ f.name }}</a></td>
<td style="color:var(--muted)">{% if f.size > 1048576 %}{{ (f.size/1048576)|round(1) }} MB{% else %}{{ (f.size/1024)|round(1) }} KB{% endif %}</td></tr>
{% endfor %}
</table>
</div>
{% endblock %}