logique de base
This commit is contained in:
24
templates/index.html
Normal file
24
templates/index.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user