diff options
author | Marius Peter <marius.peter@tutanota.com> | 2022-04-22 13:24:41 +0200 |
---|---|---|
committer | Marius Peter <marius.peter@tutanota.com> | 2022-04-22 13:24:41 +0200 |
commit | 9770cf8345d47cb086bd386c0d5c0fca165a6d11 (patch) | |
tree | 90addd86fdc9c1516cdab28b955e6054212bac83 /app/templates/home.html |
First commit! :fire:
Diffstat (limited to 'app/templates/home.html')
-rw-r--r-- | app/templates/home.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/templates/home.html b/app/templates/home.html new file mode 100644 index 0000000..a9bac51 --- /dev/null +++ b/app/templates/home.html @@ -0,0 +1,22 @@ +<!-- -*- mode: jinja2; -*- --> + +{% extends "base.html" %} + +{% block title %} + Welcome, {{ user.name_first }}! +{% endblock %} + + +{% block content %} + + <p>You are logged in as <strong>{{ user }}</strong> on + project <strong>{{ project }}</strong>.</p> + + <h2>Available modules</h2> + <dl> + {% for module in modules %} + <dt style="font-weight: bold">{{ module.name }}</dt><dd>{{ module.description }}<dd> + {% endfor %} + </dl> + +{% endblock %} |