diff options
Diffstat (limited to 'pyc/templates/index.html')
-rw-r--r-- | pyc/templates/index.html | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/pyc/templates/index.html b/pyc/templates/index.html index 87bb880..6707fca 100644 --- a/pyc/templates/index.html +++ b/pyc/templates/index.html @@ -1,10 +1,9 @@ -<!DOCTYPE html> -<html> -<head> - <meta charset="UTF-8"> - <title>pyc</title> -</head> -<body> -woo -</body> -</html> +{% extends 'base.html' %} +{% block body %} +Labs: +<ol> +{% for lab in labs %} + <li><a href="/lab/{{ lab.id }}/">{{ lab.name }}</a></li> +{% endfor %} +</ol> +{% endblock %} |