{% extends "container/public.html" %} {% block content %}

Users

{% for user in users %} {% endfor %}
ID Username Account Created Password Cipher
{{ user.get_avatar_html(crate::attachment::AttachmentSize::S)|safe }} {{ user.id }} {{ user.get_url_token()|safe }} {{ user.created_at.format("%v %r") }} {{ "{:?}"|format(user.password_cipher) }}
{% endblock %}