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.
20 lines
702 B
HTML
20 lines
702 B
HTML
{% load static %}
|
|
|
|
<div>
|
|
<p class="text-sm text-gray-500 truncate max-w-xl">Recent Status:
|
|
<span class="text-secondosiblue font-semibold">{{last_status.text}}</span>
|
|
</p>
|
|
<p class="text-sm text-gray-500">Last update:
|
|
{% if last_status.date_time.date|date:"Y-m-d" == today|date:"Y-m-d" %}
|
|
{% if last_status.time_ago == '0min ago' %}
|
|
Just Now
|
|
{% else %}
|
|
Today | {{last_status.time_ago}}
|
|
{% endif %}
|
|
{% else %}
|
|
{{last_status.time_ago}}
|
|
{% endif %}
|
|
</p>
|
|
</div>
|
|
|