You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
648 B
HTML

{% load static %}
<div>
<p class="text-sm text-gray-500 truncate max-w-xl">Recent Status:
<span class="text-slate-700 font-semibold">{{last_status.text}}</span>
</p>
<p class="text-sm text-gray-500">Last update:
{% if last_status.date == current_date %}
Today | {{last_status.time}},
{% if minutes_ago == 0 %}
Just Now
{%else%}
{{hours_minutes_ago}}
{%endif%}
{% else %}
{{last_status.date}} | {{last_status.time}}
{%endif %}
</p>
</div>