{% extends "base.html" %} {% load url from future %} {% load i18n %} {% block content %}

{% blocktrans with username=viewuser.username %}Changes for user: {{ username }}{% endblocktrans %}

{% blocktrans %}We noticed that you are disabling a user account, or removing groups from a user. To help you RatticDB has analysed the auditlogs to see what passwords the user knows, and no longer has access to. We recommend that you add all these passwords to the change queue. To do this press the "Add to Change Queue" button, if you don't want to change some of the passwords, simply uncheck them first.{% endblocktrans %}

{% csrf_token %} {% for c in creds %} {% endfor %}
{% trans "Title" %} {% trans "User" %} {% trans "Group" %} {% trans "Tags" %}
{{ c.title }} {{ c.username }} {{ c.group.name }} {% for t in c.tags.all %}{% if not forloop.first %}, {% endif %}{{ t.name }}{% endfor %}
{% endblock %}