hackthiscontract/templates/dashboard.html

6.1 KiB
Raw Blame History

{% extends "base.html" %} {% block body %}

{% if exists %}Welcome back{%else%}Welcome{%endif%}, {{address}}!
[Logout]

To get started, select a challenge below
(you may require Holesky Ether to complete some challenges, which can be obtained from the faucet)


Check out the leaderboard to see where you match up against your peers.




{% for challenge in challenge_ids %}

  • {{ challenges[challenge]['name'] }}
  • Level {{ challenges[challenge]['level'] }} / 10
  • [ {{ challenges[challenge]['status'][0] }} ]
  • [ Show Code ]
  • {% if challenges[challenge]['deployed'] %}
  • [ Redeploy ]
  • {% endif %}
  • {% if challenges[challenge]['deployed'] %} [ View ] {% else %} [ Deploy ] {% endif %}
  • {% if challenges[challenge]['deployed'] %}
  • [ Update Status ]
  • {% endif %}

{% if challenges[challenge]['deployed'] %}

Deployed at address {{ challenges[challenge]['status'][2] }}

{% endif %}

{{ challenges[challenge]['description'] }}

{{ challenges[challenge]['code'] }}


{% if challenges[challenge]['deployed'] %}

WARNING

By redeploying this contract, all your progress will be lost!

× Cancel Redeploy
{% endif %} {% endfor %}
{% endblock %}