diff options
author | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2009-07-10 19:13:45 -0400 |
---|---|---|
committer | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2009-07-10 19:13:45 -0400 |
commit | f0524f6614d145ee8031cf381342c56e1f065335 (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /templates/user_recent.html | |
parent | 1ec02bd63bc9367637832f23cd011b660b68dc86 (diff) | |
download | askbot-f0524f6614d145ee8031cf381342c56e1f065335.tar.gz askbot-f0524f6614d145ee8031cf381342c56e1f065335.tar.bz2 askbot-f0524f6614d145ee8031cf381342c56e1f065335.zip |
deleted all
Diffstat (limited to 'templates/user_recent.html')
-rw-r--r-- | templates/user_recent.html | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/templates/user_recent.html b/templates/user_recent.html deleted file mode 100644 index 70c074ad..00000000 --- a/templates/user_recent.html +++ /dev/null @@ -1,27 +0,0 @@ -<!-- 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 }}">●</span> {{ 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 --> |