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
762 B
HTML

<div>
<p class="text-sm text-gray-500">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>
<button
class="w-[30px] h-[30px] rounded-full p-2 bg-gray-300 text-white text-[18px] outline-none border-none cursor-pointer flex justify-center items-center shadow-md addStatusButton"
data-modal-url="{% url 'addstatus' %}">
<i class="fa fa-plus"></i>
</button>