cwr/web/templates/user.html
2025-11-02 17:39:20 -05:00

15 lines
435 B
HTML

<!DOCTYPE html>
{% extends "base.html" %}
{% load humanize %}
{% block content %}
<h2>{{ user.username }}'s Profile</h2>
<img src="{{ user.avatar }}" />
<br>
Joined: {{ user.date_joined|naturaltime }} {% if user.flair %}({{ user.flair }}) {% endif %}
<br>
<a href="{{ user.url }}" target="_blank">{{ user.url }}</a>
<p>
<b>Description:</b>
<br>
{{ user.description }}
{% endblock %}