{% extends "aristotle_mdr/user/base.html" %} {% load aristotle_tags util_tags humanize %} {% load static from staticfiles %} {% block title %}My Dashboard{% endblock %} {% block page %}

My Dashboard - {% firstof user.get_full_name user.email %}

Recent Notifications
    {% for item in user.notifications.unread|slice:':5' %}
  • {{ item }}
  • {% empty %}
  • No unread notifications
  • {% endfor %}
Recently viewed metadata See more
Recent Actions See more
    {% for data in recentdata %}
  • {{ data.revision.comment }}
  • {% empty %}
  • No recent items
  • {% endfor %}
{% endblock %}