Files
git-ui/templates/index.html
thatscringebro 89a8237bfe logique de base
2026-05-06 16:18:30 -04:00

25 lines
480 B
HTML

<!doctype html>
<html>
<head><meta charset="utf-8"><title>Repositories</title></head>
<body>
<h2>Repositories</h2>
<hr>
<table>
<tbody>
<tr>
<th>Name</th>
<th>Description</th>
<th>Last commit</th>
</tr>
{% for r in repos %}
<tr>
<td><a href="{{ r.name }}">{{ r.name }}</a></td>
<td>{{ r.desc }}</td>
<td>{{ r.lastcommit }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>