blob: b05f47949c9fce5ed66ab2004a4dfa95b645f81a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{% extends "base.html" %}
{% block content %}
<table>
<thead>
<tr><th>Name
<th>Description
<th>Last Update
</thead>
<tbody>
{% for repo in repos %}
<tr><td><a href={{repo.name}}>{{repo.name}}</a>
<td>{{repo.description}}
<td>{{repo.last_update}}
{% endfor %}
</tbody>
</table>
{% endblock %}
|