{% extends "base.html" %} {% block content %}

Activity Feed

Recent uploads from the community

{% if recent_notes %}
{% for note in recent_notes %}
{{ note.user.name }} Avatar
{{ note.user.name }} {{ note.created_at.strftime('%b %d at %H:%M') }}
uploaded {{ note.title }} in {{ note.subject.name }}
{% endfor %}
{% else %}

No recent activity

{% endif %}
{% endblock %}