{% load i18n %}
{% with tokens=recovery_device.token_set.all %}
{% if tokens %}
{% blocktrans with amount=tokens|length %}You have {{ amount }} codes available right now.{% endblocktrans %}
{% trans 'Note: If you generate new codes this will disable your current codes.' %}
{% else %}
{% trans 'You have no recovery codes available, do you want to generate some codes?' %}
{% endif %}
{% endwith %}