{% extends "meta.html" %} {% block title %} ~{{user.username}} - meta.sr.ht {% endblock %} {% block content %}

~{{user.username}}

Email
{{user.email}}
Registered
{{user.created | date}}
User type
{{user.user_type.value}}
Welcome emails
{{user.welcome_emails}}
{% if cfg("meta.sr.ht::billing", "enabled") == "yes" and user.stripe_customer %}
Stripe customer
{{user.stripe_customer}}
Payment amount
${{"{:.2f}".format(user.payment_cents / 100)}}
Payment interval
{{user.payment_interval.value}}
Payment due
{{user.payment_due | date}}
{% endif %}
{% if reset_pending %}
Password reset pending.
{% endif %}
{{csrf_token()}}
{% if user.confirmation_hash %}
confirmation link This account is pending confirmation.
{% endif %} {% if totp %}
{{csrf_token()}} This account has TOTP enabled.
{% endif %}

User notes

{% for note in user.notes %}
{{note.note}} {{note.created | date}}
{% endfor %}
{{valid.summary('notes')}}
{{csrf_token()}}
{% endblock %}