2012-04-11 12:14:18 -07:00
|
|
|
{% load utils_tags typogrify_tags statistics_tags %}
|
|
|
|
|
|
|
|
{% if activities %}
|
|
|
|
|
2012-04-12 11:43:36 -07:00
|
|
|
<div class="NB-module NB-module-activities NB-page-{{ page }}">
|
|
|
|
<h5 class="NB-module-header">
|
2012-04-12 11:18:56 -07:00
|
|
|
<div class="NB-module-header-right">
|
|
|
|
<div class="NB-spinner NB-left"></div>
|
|
|
|
<a href="#" class="NB-module-direction NB-module-next-page NB-javascript {% if activities|length <= 5 %}NB-disabled{% endif %}"></a>
|
|
|
|
<a href="#" class="NB-module-direction NB-module-previous-page {% if page <= 1 %}NB-disabled{% endif %}"></a>
|
|
|
|
</div>
|
2012-04-11 12:14:18 -07:00
|
|
|
|
|
|
|
Your Activity
|
2012-04-12 11:43:36 -07:00
|
|
|
</h5>
|
2012-04-11 12:14:18 -07:00
|
|
|
|
|
|
|
<ul class="NB-interactions">
|
|
|
|
{% for activity in activities|slice:":5" %}
|
|
|
|
<li class="NB-interaction NB-interaction-{{ activity.category }}"
|
2012-04-11 15:53:53 -07:00
|
|
|
{% if activity.content_id %}data-content-id="{{ activity.content_id }}"{% endif %}
|
|
|
|
{% if activity.feed_id %}data-feed-id="{{ activity.feed_id }}"{% endif %}>
|
2012-04-11 12:14:18 -07:00
|
|
|
|
|
|
|
{% if activity.category == 'star' %}
|
|
|
|
<img class="NB-interaction-photo" src="/rss_feeds/icon/{{ activity.feed_id }}">
|
|
|
|
<div class="NB-interaction-date">
|
|
|
|
{{ activity.date }} ago
|
|
|
|
</div>
|
|
|
|
<div class="NB-interaction-title">
|
|
|
|
You starred "<span class="NB-interaction-starred-story-title NB-splash-link">{{ activity.content|truncatewords:8 }}</span>".
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
2012-04-11 15:53:53 -07:00
|
|
|
{% if activity.category == 'feedsub' %}
|
2012-04-11 12:14:18 -07:00
|
|
|
<img class="NB-interaction-photo" src="/rss_feeds/icon/{{ activity.feed_id }}">
|
|
|
|
<div class="NB-interaction-date">
|
|
|
|
{{ activity.date }} ago
|
|
|
|
</div>
|
|
|
|
<div class="NB-interaction-title">
|
2012-04-11 15:20:57 -07:00
|
|
|
You subscribed to <span class="NB-interaction-feed-title NB-splash-link">{{ activity.content|truncatewords:8 }}</span>.
|
2012-04-11 12:14:18 -07:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
{% endif %}
|