{% extends "base.html" %} {% block content %}
{% if let Some(Profile {did, display_name}) = profile %}
Hi, {% if let Some(display_name) = display_name %} {{display_name}} {% else %} friend {% endif %}. What's your status today??
{% else %}
Log in to set your status!
Log in
{% endif %}
{% for status in status_options %} {% endfor %}
{% for status in statuses %}
{{status.status}}
{{status.author_display_name()}} {% if status.is_today() %} is feeling {{status.status}} today {% else %} was feeling {{status.status}} on {{status.created_at}} {% endif %}
{% endfor %}
{%endblock content%}