bbcovert/theme.sample/user.html

22 lines
338 B
HTML

<html>
<head>
<title>User - {{ user.name }}</title>
</head>
<body>
<h1>User Page</h1>
<ol>
<li>
<h3>{{ user.name }}</h3>
</li>
<li>
{{ user.description | safe }}
</li>
<li>
Register time: {{ user.reg_time }}
</li>
</ol>
</body>
</html>