{% load i18n %}

{% trans "Access locked" %}

{% blocktrans with user_attempts.failed_attempts as failed_attempts %}The access to the site has been locked because you had more than {{ failed_attempts }} failed login attempts.{% endblocktrans %}

{% blocktrans with user_attempts.ip_address as ip %}Your IP {{ ip_address }} has been locked for {{ lockout_time }} seconds.{% endblocktrans %}

{% blocktrans with user_attempts.expiration_time as expiration_time_left %}Lockout will expire in {{ expiration_time_left }} seconds.{% endblocktrans %}