14 lines
317 B
HTML
14 lines
317 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
{% if username != "" %}
|
|
<h1>Hello <i>{{ username }}</i></h1>
|
|
{% else %}
|
|
<h1>User Home</h1>
|
|
{% endif %}
|
|
|
|
<p>Your user session is <b>{% if active %}active{% else %}inactive{% endif %}</b></p>
|
|
|
|
<p>Request took <b>{{ duration.as_millis() }}</b>ms</p>
|
|
{% endblock content %}
|