2024-09-08 14:24:40 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2024-09-08 20:47:11 +02:00
|
|
|
{% if username != "" %}
|
|
|
|
<h1>Hello <i>{{ username }}</i></h1>
|
|
|
|
{% else %}
|
|
|
|
<h1>User Home</h1>
|
|
|
|
{% endif %}
|
|
|
|
|
2024-09-15 13:14:25 +02:00
|
|
|
<p>Your user session is <b>{% if active %}active{% else %}inactive{% endif %}</b></p>
|
2024-09-08 20:47:11 +02:00
|
|
|
|
|
|
|
<p>Request took <b>{{ duration.as_millis() }}</b>ms</p>
|
2024-09-08 14:24:40 +02:00
|
|
|
{% endblock content %}
|