Fixed Typo
This commit is contained in:
parent
0f428e7c9b
commit
e4dd8396db
4
ab.txt
4
ab.txt
|
@ -1017,9 +1017,9 @@ Nascar;Drag Racing
|
||||||
Torhüter;Verteidiger
|
Torhüter;Verteidiger
|
||||||
Jagen;Angeln
|
Jagen;Angeln
|
||||||
Comedy;Drama
|
Comedy;Drama
|
||||||
Schoko-;Vanillepudding
|
Schokopudding;Vanillepudding
|
||||||
Fußball;Formel 1
|
Fußball;Formel 1
|
||||||
Zitrone-;Pfirsicheistee
|
Zitronentee;Pfirsicheistee
|
||||||
Puzzeln;Fernsehen
|
Puzzeln;Fernsehen
|
||||||
Tee;Kaffee
|
Tee;Kaffee
|
||||||
Butter;Margarine
|
Butter;Margarine
|
||||||
|
|
|
@ -8,6 +8,10 @@ html, body {
|
||||||
color: #e8e6e3;
|
color: #e8e6e3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
#header {
|
#header {
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
<body>
|
<body>
|
||||||
<div id="content">
|
<div id="content">
|
||||||
<div id="header">{{ title }}</div>
|
<div id="header">{{ title }}</div>
|
||||||
|
<hr>
|
||||||
{%- set id = namespace(value=0) %}
|
{%- set id = namespace(value=0) %}
|
||||||
{%- for question in content %}
|
{%- for question in content %}
|
||||||
{%- set id.value = id.value + 1 %}
|
{%- set id.value = id.value + 1 %}
|
||||||
|
@ -26,6 +27,7 @@
|
||||||
<input type="radio" id="b{{ id.value }}" class="b" name="group-{{ id.value }}">
|
<input type="radio" id="b{{ id.value }}" class="b" name="group-{{ id.value }}">
|
||||||
<label for="b{{ id.value }}" class="b">B) {{ question['B'] }}</label>
|
<label for="b{{ id.value }}" class="b">B) {{ question['B'] }}</label>
|
||||||
</div>
|
</div>
|
||||||
|
<hr>
|
||||||
{%- endfor %}
|
{%- endfor %}
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="questions">Es gibt derzeit {{ num_lines }} Fragen.</div>
|
<div id="questions">Es gibt derzeit {{ num_lines }} Fragen.</div>
|
||||||
|
|
Loading…
Reference in New Issue