{% extends "internal-layout.html" %} {% block title %}Fleeg | {{ user.first_name }} {{ user.last_name }}{% endblock %} {% block content %} {% include 'side-menu.html' %}

Notifications

{% for notification in notifications %}
{{ notification.sender.user.first_name }} {{ notification.sender.user.last_name }} {% if notification.type == 'FOLLOW' %} is {{ notification.type|lower }}ing you now.
{{ notification.created_at|timesince }}
{% else %} {{ notification.type|lower }}ed your link {{ notification.post.title }}.
{{ notification.created_at|timesince }} ago.
{% endif %}
{% empty %}
No items yet.
{% endfor %}
{% endblock %}