{% extends 'base.html' %}
{% block title_head %}
Attack
{% endblock title_head %}
{% block content %}
{% if account.unlock_at is None %}
{% include "tutorials.html" with account=account accounts=tutorial_accounts %}
{% endif %}
{% include "subaccounts_refresh.html" with account=account accounts=accounts has_protected_account=has_protected_account %}
{% if account.unlock_at is not None %}
Or play the tutorial
{% include "tutorials.html" with account=account accounts=tutorial_accounts %}
{% endif %}
{% endblock %}