summaryrefslogtreecommitdiffstats
path: root/templates/user_recent.html
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-07-10 19:15:28 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-07-10 19:15:28 -0400
commit35b666224a05fbd249b1c51a0a48fb95b246fe9a (patch)
treebfce966ce040dd849e8cc35a012d18f7632ad6b1 /templates/user_recent.html
parent5b45e526c74faf55110ff0afdcba19797d7e0f4d (diff)
downloadaskbot-35b666224a05fbd249b1c51a0a48fb95b246fe9a.tar.gz
askbot-35b666224a05fbd249b1c51a0a48fb95b246fe9a.tar.bz2
askbot-35b666224a05fbd249b1c51a0a48fb95b246fe9a.zip
adding all files again
Diffstat (limited to 'templates/user_recent.html')
-rw-r--r--templates/user_recent.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/templates/user_recent.html b/templates/user_recent.html
new file mode 100644
index 00000000..70c074ad
--- /dev/null
+++ b/templates/user_recent.html
@@ -0,0 +1,27 @@
+<!-- user_recent.html -->
+{% extends "user.html" %}
+{% load extra_tags %}
+{% load humanize %}
+
+{% block usercontent %}
+ <div style="padding-top:5px;font-size:13px;">
+ {% for act in activities %}
+ <div style="clear:both;line-height:20px" >
+ <div style="width:180px;float:left">{% diff_date act.time 3 %}</div>
+ <div style="width:150px;float:left">
+ <span class="user-action-{{ act.type_id }}">{{ act.type }}</span>
+ </div>
+ <div style="float:left;overflow:hidden;">
+ {% ifequal act.type_id 7 %}
+ <a href="{{act.badge.get_absolute_url}}" title="{{ act.badge.get_type_display }} : {{ act.badge.description }}" class="medal"><span class="badge{{ act.badge.type }}">&#9679;</span>&nbsp;{{ act.badge.name }}</a>
+ {% else %}
+ <span class="post-type-{{ act.type_id }}"><a href="{{ act.title_link }}">{{ act.title }}</a></span>
+ {% if act.summary %}<span class="revision-summary">{{ act.summary }}</span>{% endif %}
+ {% endifequal %}
+ <div style="height:5px"></div>
+ </div>
+ </div>
+ {% endfor %}
+ </div>
+{% endblock %}
+<!-- end user_recent.html -->