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