mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-22 19:41:03 +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 %}
|