{% extends '_base.html' %} {% load form_helpers %} {% block title %}Recent Activity{% endblock %} {% block content %}

Recent Activity

{% include 'users/inc/profile_nav.html' with active_tab="recent_activity" %}
{% for action in recent_activity %} {% endfor %}
Time Action
{{ action.time|date:'SHORT_DATETIME_FORMAT' }} {{ action.icon }} {{ action.message|safe }}
{% endblock %}