{% extends 'base.html' %} {% load ui_extras %} {% block content %}

{{ object }}

Recovery Password Configuration

{% if perms.mdm.change_recoverypasswordconfig %} {% url 'mdm:update_recovery_password_config' object.pk as url %} {% button 'UPDATE' url "Edit Recovery Password Configuration" %} {% endif %} {% if perms.mdm.delete_recoverypasswordconfig and object.can_be_deleted %} {% url 'mdm:delete_recovery_password_config' object.pk as url %} {% button 'DELETE' url "Delete Recovery Password Configuration" %} {% endif %}
{% if not object.dynamic_password %} {% endif %}
Name {{ object.name }}
Dynamic password? {{ object.dynamic_password|yesno }}
Static password
Automatic rotation {% if not object.rotation_interval_days %} never {% else %} every {{ object.rotation_interval_days }} day{{ object.rotation_interval_days|pluralize }} {% endif %}
Rotate firmware password? {{ object.rotate_firmware_password|yesno }}
Blueprint{{ blueprint_count|pluralize }} ({{ blueprint_count }}) {% if blueprint_count %}
    {% for blueprint in blueprints %} {% if perms.mdm.view_blueprint %}
  • {{ blueprint }}
  • {% else %}
  • {{ blueprint }}
  • {% endif %} {% endfor %}
{% else %} - {% endif %}
{% created_updated_at object %}
{% endblock %} {% block extrajs %} {% endblock %}