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

Recovery password configuration{{ page_obj.paginator.count|pluralize }} ({{ page_obj.paginator.count }})

{% if perms.mdm.add_recoverypasswordconfig %} {% url 'mdm:create_recovery_password_config' as url %} {% button 'CREATE' url "Create new Recovery Password Config" %} {% endif %}
{% if object_list %} {% pagination next_url previous_url %} {% for recovery_password_config in object_list %} {% endfor %}
Name created at updated at
{{ recovery_password_config }} {{ recovery_password_config.created_at|date:"SHORT_DATETIME_FORMAT" }} {{ recovery_password_config.updated_at|date:"SHORT_DATETIME_FORMAT" }} {% if perms.mdm.change_recoverypasswordconfig %} {% url 'mdm:update_recovery_password_config' recovery_password_config.pk as url %} {% button 'UPDATE' url "Edit Recovery Password Configuration" %} {% endif %} {% if perms.mdm.delete_recoverypasswordconfig and recovery_password_config.can_be_deleted %} {% url 'mdm:delete_recovery_password_config' recovery_password_config.pk as url %} {% button 'DELETE' url "Delete Recovery Password Configuration" %} {% endif %}
{% pagination next_url previous_url %} {% else %} {% if perms.mdm.add_recoverypasswordconfig %} {% url 'mdm:create_recovery_password_config' as link %} {% no_entities 'Recovery password configurations' link %} {% else %} {% no_entities 'Recovery password configurations' %} {% endif %} {% endif %} {% endblock %}