Compare commits
2 Commits
d6d3a3feb2
...
798220d266
Author | SHA1 | Date |
---|---|---|
fenix | 798220d266 | |
fenix | a4dad7dcc3 |
|
@ -3,7 +3,7 @@ HOLA! Sandrine,
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
( Acá Informamos tan sólo en caso de una cierta puntuación, por encima de un umbral )
|
( Acá Informamos tan sólo en caso de una cierta puntuación, por encima de un umbral )
|
||||||
|
|
||||||
Estoy happy to inform you that you did very well on today's Python Challenge.
|
Estoy happy to inform you that you did very well on today's Python Challenge.
|
||||||
HAs alcanzado esta puntuacion : 100 de { max_score }} PUNTOS ! ;-)
|
HAs alcanzado esta puntuacion : 100 de { max_score }} PUNTOS ! ;-)
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Results</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<h1>Python Challenge ResultadOS: </h1>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
:-)
|
||||||
|
<em>Sandrine:</em> 100/100
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
:-)
|
||||||
|
<em>Gergeley:</em> 87/100
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
:-)
|
||||||
|
<em>Frieda:</em> 92/100
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
:-(
|
||||||
|
<em>Fritz:</em> 40/100
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
:-(
|
||||||
|
<em>Sirius:</em> 75/100
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -11,7 +11,8 @@
|
||||||
<h1>{{ test_name }} ResultadOS: </h1>
|
<h1>{{ test_name }} ResultadOS: </h1>
|
||||||
<ul>
|
<ul>
|
||||||
{% for student in students %}
|
{% for student in students %}
|
||||||
<li>
|
<li>
|
||||||
|
{% if student.score > 80 %} :-) {% else %} :-( {% endif %}
|
||||||
<em>{{ student.name }}:</em> {{ student.score }}/{{ max_score }}
|
<em>{{ student.name }}:</em> {{ student.score }}/{{ max_score }}
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
Loading…
Reference in New Issue