Files
msys2-web/app/templates/stats.html
Christoph Reiter a2f213ac76 stats: the main interface is default now
no need to reference it specifically
2021-03-04 19:28:07 +01:00

19 lines
333 B
HTML

{% extends "layout.html" %}
{% block title %}Traffic Stats{% endblock %}
{% block inner_content %}
<style>
iframe {
width: 100%;
height: calc(100vh - 8rem);
}
</style>
<div class="card">
<div class="overflow-auto">
<iframe src="https://repo.msys2.org/stats/"></iframe>
</div>
</div>
{% endblock %}