{% load static %} {% if latest_statuses %} {% for status in latest_statuses %}
user profile

{{status.staff.user.first_name}} {{status.staff.user.last_name}}

{% if status.time_ago == '0min ago' %}

Just Now

{%else %}

{{status.time_ago}}

{%endif%}
{% if status.reaction_set.all %}
{% for reaction in status.reaction_set.all %}

{{reaction.emoji}}

{% endfor %}
{% endif %}
{% endfor %} {% else %}

No statuses at the moment.

{% endif %}