diff options
Diffstat (limited to 'templates/repo-list.html')
-rw-r--r-- | templates/repo-list.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/repo-list.html b/templates/repo-list.html new file mode 100644 index 0000000..b05f479 --- /dev/null +++ b/templates/repo-list.html @@ -0,0 +1,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 %} + |