Fixed Typo

This commit is contained in:
root 2023-06-03 02:28:52 +02:00
parent 0f428e7c9b
commit e4dd8396db
3 changed files with 8 additions and 2 deletions

4
ab.txt
View File

@ -1017,9 +1017,9 @@ Nascar;Drag Racing
Torhüter;Verteidiger
Jagen;Angeln
Comedy;Drama
Schoko-;Vanillepudding
Schokopudding;Vanillepudding
Fußball;Formel 1
Zitrone-;Pfirsicheistee
Zitronentee;Pfirsicheistee
Puzzeln;Fernsehen
Tee;Kaffee
Butter;Margarine

View File

@ -8,6 +8,10 @@ html, body {
color: #e8e6e3;
}
hr {
display: none;
}
#header {
border-radius: 10px;
text-align: center;

View File

@ -16,6 +16,7 @@
<body>
<div id="content">
<div id="header">{{ title }}</div>
<hr>
{%- set id = namespace(value=0) %}
{%- for question in content %}
{%- set id.value = id.value + 1 %}
@ -26,6 +27,7 @@
<input type="radio" id="b{{ id.value }}" class="b" name="group-{{ id.value }}">
<label for="b{{ id.value }}" class="b">B) {{ question['B'] }}</label>
</div>
<hr>
{%- endfor %}
<div id="footer">
<div id="questions">Es gibt derzeit {{ num_lines }} Fragen.</div>