18 lines
400 B
HTML
18 lines
400 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Home{% endblock %}
|
|
|
|
{% block content %}
|
|
<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 %}
|
|
{% endblock %}
|
|
|