summaryrefslogtreecommitdiff
path: root/templates/main_page.html
diff options
context:
space:
mode:
authorGabriel Pérez-Cerezo <gabriel@gpcf.eu>2018-07-06 18:17:54 +0200
committerGabriel Pérez-Cerezo <gabriel@gpcf.eu>2018-07-06 18:17:54 +0200
commit704a61184e9d87d0aad33b5f830e075dd7da9e4d (patch)
tree501b46e3d61fdcecc3393588c80f378400ac3c2b /templates/main_page.html
parentc35389d77608fa78affe4eee331970897707bc97 (diff)
downloadhemiptera-704a61184e9d87d0aad33b5f830e075dd7da9e4d.tar.gz
hemiptera-704a61184e9d87d0aad33b5f830e075dd7da9e4d.tar.bz2
hemiptera-704a61184e9d87d0aad33b5f830e075dd7da9e4d.zip
added templates
Diffstat (limited to 'templates/main_page.html')
-rw-r--r--templates/main_page.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/main_page.html b/templates/main_page.html
new file mode 100644
index 0000000..e32cfd4
--- /dev/null
+++ b/templates/main_page.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<head>
+ <title>
+ Hemiptera Bugtracker at {{DOMAIN}}
+ </title>
+ <meta charset="utf-8">
+ <link rel="stylesheet" type="text/css" href="/styles.css" >
+</head>
+<body>
+ List of projects
+ <table>
+ <thead>
+ <td>Name
+ <td>Number of bugs
+ </thead>
+ {% for i in projects %}
+ <tr>
+ <td>
+ <a href="{{ i.name }}"> {{ i.name }}</a>
+ <td>
+ {{ i.count }}
+ </tr>
+ {% endfor %}
+ </table>
+</body>