src/server/http/templates/repo_list.html
Ref: Size: 672 B
{% extends "base.html" %}
{% block body %}
<div>
<h2 style="margin-top: 0;">Repositories</h2>
{% if repos.is_empty() %}
<p style="color: #666;">No repositories found.</p>
{% else %}
<table>
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Last Commit</th>
</tr>
</thead>
<tbody>
{% for repo in repos %}
<tr>
<td><a href="/{{ repo.name }}">{{ repo.name }}</a></td>
<td style="color: #666;">{{ repo.description }}</td>
<td class="mono" style="color: #666;">{{ repo.last_commit }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}
</div>
{% endblock %}