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

{{ object }}

FileVault Configuration

{% if perms.mdm.change_filevaultconfig %} {% url 'mdm:update_filevault_config' object.pk as url %} {% button 'UPDATE' url "Edit FileVault Config" %} {% endif %} {% if perms.mdm.delete_filevaultconfig and object.can_be_deleted %} {% url 'mdm:delete_filevault_config' object.pk as url %} {% button 'DELETE' url "Delete Filevault Configuration" %} {% endif %}
{% if object.at_login_only %} {% endif %}
Name {{ object.name }}
Escrow location display name {{ object.escrow_location_display_name }}
Defer enablement at login only? {{ object.at_login_only|yesno }}
Max bypass attempts at login {{ object.bypass_attempts }}
Show PRK? {{ object.show_recovery_key|yesno }}
Destroy key on standby? {{ object.destroy_key_on_standby|yesno }}
Automatic PRK rotation {% if not object.prk_rotation_interval_days %} never {% else %} every {{ object.prk_rotation_interval_days }} day{{ object.prk_rotation_interval_days|pluralize }} {% endif %}
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 %}