diff --git a/templates/base.html b/templates/base.html index 1ff2c39..d8d75b9 100644 --- a/templates/base.html +++ b/templates/base.html @@ -17,6 +17,13 @@
{{ problem.description }}
++ Score: {{ problem.score|default:"???" }} +
++ Memory limit: + {% if problem.memory_limit %} + {{ problem.memory_limit|filesizeformat }} + {% else %} + Unlimited + {% endif %} +
++ Time limit: + {% if problem.time_limit %} + {{ problem.time_limit }} + second{{ problem.time_limit|pluralize:"s" }} + {% else %} + Unlimited + {% endif %} +
+{{ problem.description }}
+