SOITA/templates/home.html

18 lines
400 B
HTML
Raw Normal View History

2021-12-08 19:28:56 +01:00
{% extends "base.html" %}
{% block title %}Home{% endblock %}
{% block content %}
2021-12-23 14:03:12 +01:00
<h1>Welcome in SOITA</h1>
{% for test in tests %}
<p>
<b>{{test.name}}</b>
<br>
Passing score: {{test.passing_score}}
<br>
Category: {{test.category.name}}
</p>
{% endfor %}
2021-12-08 19:28:56 +01:00
{% endblock %}