{% extends 'base.html' %} {% load static %} {% load i18n %} {% load bootstrap3 %} {% block custom_head_css_js %} {{ wizard.form.media }} {% endblock %} {% block first_login_message %}{% endblock %} {% block content %}
{% trans 'First Login' %}
{% csrf_token %} {{ wizard.management_form }} {#{% if wizard.form.forms %}#} {#{{ wizard.form.management_form }}#} {#{% for form in wizard.form %}#} {#{% bootstrap_form form %}#} {#{% endfor %}#} {#{% else %}#} {#{% endif %}#} {% if form.finish_description %} {{ form.finish_description }}
{% endif %} {% if wizard.steps.current == '1' and not request.user.can_update_ssh_key %} {% trans 'User auth from {}, ssh key login is not supported' %} {% else %} {% bootstrap_form wizard.form %} {% endif %} {% if form.mfa_description %} {{ form.mfa_description }} {% endif %} {% if form.pubkey_description and request.user.can_update_ssh_key %} {{ form.pubkey_description }} {% endif %}
{% endblock %} {% block custom_foot_js %} {% endblock %}