|
0
|
1 |
{% load com %} |
|
|
2 |
{% load i18n %} |
|
|
3 |
{% load local_perms %} |
|
|
4 |
{% load activity %} |
|
|
5 |
|
|
|
6 |
<table class="dash_table"> |
|
|
7 |
<thead> |
|
|
8 |
<tr> |
|
|
9 |
<th><span class="em">{% blocktrans %}Recent comments{% endblocktrans %}<span class="em"></th> |
|
|
10 |
</tr> |
|
|
11 |
</thead> |
|
|
12 |
<tbody> |
|
|
13 |
<tr><td> |
|
|
14 |
<ul class="dashlog_list"> |
|
|
15 |
{% for comment in last_comments %} |
|
|
16 |
<li class="dashlog_item"> |
|
|
17 |
<div class="dashlog"> |
|
160
|
18 |
<img class="dashlog_img" src="{{ CM_MEDIA_PREFIX }}img/note_small.png"/> |
|
0
|
19 |
<span class="dashlog_data"> |
|
144
|
20 |
<a href="{% url text-view-show-comment comment.text_version.text.key comment.id_key %}">{{ comment.title }}</a> {% blocktrans %}on text{% endblocktrans %} <a href="{% url text-view comment.text_version.text.key %}">{{ comment.text_version.title }}</a> |
|
0
|
21 |
</span> |
|
|
22 |
<div style="padding-left:22px;" class="dashlog_metadata"> |
|
227
|
23 |
{% blocktrans with comment.created|timesince as duration %}created {{ duration }} ago{% endblocktrans %}, |
|
|
24 |
{% blocktrans with comment.get_name as username %}by {{ username }}{% endblocktrans %} |
|
0
|
25 |
</div> |
|
|
26 |
</div> |
|
|
27 |
</li> |
|
|
28 |
{% empty %} |
|
|
29 |
{% blocktrans %}No comments yet{% endblocktrans %} |
|
|
30 |
{% endfor %} |
|
|
31 |
</ul> |
|
|
32 |
</td></tr> |
|
|
33 |
</tbody> |
|
|
34 |
</table> |