2011-11-22 04:01:05 +01:00
|
|
|
{{ for $threads as $thread }}
|
2011-11-25 01:42:12 +01:00
|
|
|
<div id="tread-wrapper-$thread.id" class="tread-wrapper">
|
2012-03-01 11:46:08 +01:00
|
|
|
{{ for $thread.items as $item }}
|
|
|
|
{{if $item.comment_firstcollapsed}}
|
|
|
|
<div class="hide-comments-outer">
|
|
|
|
<span id="hide-comments-total-$thread.id" class="hide-comments-total">$thread.num_comments</span> <span id="hide-comments-$thread.id" class="hide-comments fakelink" onclick="showHideComments($thread.id);">$thread.hide_text</span>
|
|
|
|
</div>
|
|
|
|
<div id="collapsed-comments-$thread.id" class="collapsed-comments" style="display: none;">
|
|
|
|
{{endif}}
|
|
|
|
{{if $item.comment_lastcollapsed}}</div>{{endif}}
|
|
|
|
|
2012-04-13 09:43:38 +02:00
|
|
|
{{ if $item.type == tag }}
|
|
|
|
{{ inc wall_item_tag.tpl }}{{ endinc }}
|
|
|
|
{{ else }}
|
|
|
|
{{ inc $item.template }}{{ endinc }}
|
|
|
|
{{ endif }}
|
2012-03-01 11:46:08 +01:00
|
|
|
|
|
|
|
{{ endfor }}
|
2011-11-22 04:01:05 +01:00
|
|
|
</div>
|
|
|
|
{{ endfor }}
|
|
|
|
|
|
|
|
{{ if $dropping }}
|
2012-03-26 09:09:14 +02:00
|
|
|
<a href="#" onclick="deleteCheckedItems();return false;">
|
|
|
|
<span class="icon s22 delete text">$dropping</span>
|
|
|
|
</a>
|
2011-11-22 04:01:05 +01:00
|
|
|
{{ endif }}
|