diff options
Diffstat (limited to 'testing/templates/teams.html')
-rw-r--r-- | testing/templates/teams.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/templates/teams.html b/testing/templates/teams.html new file mode 100644 index 0000000..cbeaec9 --- /dev/null +++ b/testing/templates/teams.html @@ -0,0 +1,15 @@ +<html> + <head> + <title>{{ year }}</title> + </head> + <body> + <h1>CSL {{ year }}</h1> + <ul> + {% for team in teams %} + <li class="{% if loop.index0 == 0 %}champion{% endif %}"> + <b>{{ team.name }}</b>: {{ team.score }} + </li> + {% endfor %} + </ul> + </body> +</html> |