{% extends "base.html" %} {% block title %}Inbox{% endblock %} {% block content %}

Inbox

Daily subscription notifications.

Unread: {{ page.unread_count }}

{% if page.items.is_empty() %}

No notifications yet. Subscribe to someone first.

{% else %}
{% for item in page.items %}

{% if item.is_loud %}Loud alert:{% else %}Update:{% endif %} @{{ item.target_username }}

{{ item.created_at }}

{{ item.message }}

For day: {{ item.previous_day }}

Open profile {% if !item.is_viewed %}
{% else %} Viewed {% endif %}
{% endfor %}
{% endif %}
{% endblock %}