{% extends "meta.html" %} {% block title %} User admin - {{cfg("sr.ht", "site-name")}} meta {% endblock %} {% block content %}

User administration

{% if search_error %}
{{ search_error }}
{% endif %}
Notice: This page contains private user information. Remember your committment to protecting the privacy of the people listed here and do not share any of this information with unauthorized individuals.
{% for user in users %}

~{{user.username}}

Email
{{user.email}}
Registered
{{user.created | date}}
User type
{{user.user_type.value}}
Payment status
{{user.payment_status.value}}
{% if user.bio %}
Bio
{{user.bio | md}}
{% endif %}
{% endfor %}
{{pagination()}}
{% endblock %}