mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-12-27 20:40:33 +00:00
12 lines
205 B
Text
12 lines
205 B
Text
{% extends "base" %}
|
|
|
|
{% block title %}
|
|
{{ user.display_name }}
|
|
{% endblock title %}
|
|
|
|
{% block content %}
|
|
<h1>{{ user.display_name }}</h1>
|
|
<div>
|
|
{{ user.summary | safe }}
|
|
</div>
|
|
{% endblock content %}
|