diff options
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 %} |