{% extends "base.html" %} {% load url from future %} {% load account %} {% load social_account_list %} {% load compress %} {% block pagescripts %} {% compress css %} {% endcompress %} {% endblock %} {% block title %} Your KarmaNotes Profile {% endblock %} {% block raw_content %}
{% user_display user %}
{{ user.get_profile.get_points }}
Karma Points
{{ user.note_set.count }}
Notes Uploaded
Karma Point Activity
My Account
{% for item in object_list %}
{% if 'KarmaEvent' in item.0 %} {% with event=item.1 %}
{{ event.timestamp|date:"l, F j, Y" }}
{% if event.points > 0 %} +{{ event.points }} {% else %} {{ event.points }} {% endif %} {{ event.get_message }}
{% if item.0 == 'NoteKarmaEvent' %} {% endif %} {% if item.0 == 'CourseKarmaEvent' %}
{{ event.course.school.name }}
{% endif %}
{% endwith %} {% endif %}
{% endfor %}
{% if not object_list %}

Nothing to show here yet.

{% endif %}
{% endblock %}