{% if user.is_authenticated %}
{% if user.is_staff %}
Admin | {% endif %}
{% with user.coreprofile as profile %}
Health: {{ profile.health|default:"0" }}/{{ profile.max_health|default:"0" }} {% if health_tick_time_remaining %}
More in {{health_tick_time_remaining}}s{% endif %}
Energy: {{ profile.energy|default:"0" }}/{{ profile.max_energy|default:"0" }}{% if energy_tick_time_remaining %}
More in {{energy_tick_time_remaining}}s{% endif %}
Stamina: {{ profile.stamina|default:"0" }}/{{ profile.max_stamina|default:"0" }}{% if stamina_tick_time_remaining %}
More in {{stamina_tick_time_remaining}}s{% endif %}