webdist/app/templates/latest.html

16 lines
453 B
HTML
Raw Normal View History

2022-10-02 18:29:41 +02:00
{% extends 'index.html' %}
{% block body %}
<div class="row align-items-start">
{% for repo in data %}
<div class="col">
<h2>{{ repo }}</h2>
{% for pkg in data[repo] %}
{{ pkg['buildtime'].strftime("%m/%d") }} <strong>{{ pkg['name'] }}</strong> {{ pkg['version'] }}-{{ pkg['release'] }}<br/>
<small>{{ pkg['summary'] }}</small><br/>
{% endfor %}
</div>
{% endfor %}
</div>
{% endblock %}