diff --git a/templates/challenges.html b/templates/challenges.html index 2253027..1f25dbb 100644 --- a/templates/challenges.html +++ b/templates/challenges.html @@ -29,8 +29,9 @@ function toggle() { {% for challenge in challenges %}
  • - {% if challenge in solved %}check{% endif %}{{ challenge.name }} - {% if challenge in solved %}Solved{% else %}Unsolved{% endif %}: {{ challenge.points }}pt. {{ challenge.category }} + {{ challenge.name }} + {% if challenge in solved %}check_circle{% endif %} + {{ challenge.category }} {{ challenge.points }}pt

    {{ challenge.description }}