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

My Dashboard - {{ user.first_name }} {{ user.last_name }} ({{ user.username }})

    {% for item in user.notifications.unread|slice:':5' %}
  • {{ item }}
  • {% empty %}
  • No unread notifications
  • {% endfor %}
{% for item in user.profile.favourites.all|slice:':5' %} {{ item }} ({{ item.item.get_verbose_name }}) {% empty %} No favourites {% endfor %}
Recent Workgroups
    {% for item in user.profile.myWorkgroups.all %}
  • {{ item }}
  • {% empty %}
  • No workgroups
  • {% endfor %}
My Recent Actions
    {% for revision in recent %}
  • {{ revision.comment }} ({{revision.date_created}})
      {% for item in revision.version_set.all|unique_recent %} {% if item.object.get_absolute_url %} {# things with a 'parentitem' are components and probably shouldn't be shown. #}
    • {{ item }} ({{ item.object.id }})
    • {% endif %} {% endfor %}
  • {% empty %}
  • No recent items
  • {% endfor %}
{% endblock %}