8 lines
368 B
HTML
8 lines
368 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
{% for repo in repos | sort(attribute="name") -%}
|
|
<a href="{{repo.name}}/summary.html">{{ repo.name }}</a> ({{repo.metadata.website}}) [{{repo.metadata.attributes | get(key="status", default="unknown")}}] ({{ts_to_date(ts=repo.history[0].ts_utc, tz=repo.history[0].ts_offset)}})<br/>
|
|
{% endfor -%}
|
|
{% endblock content %}
|