]> git.mxchange.org Git - friendica.git/blob - view/theme/quattro/conversation.tpl
7bb7cd2fd5101f2c50836766c33a46a992da19a8
[friendica.git] / view / theme / quattro / conversation.tpl
1 {{ for $threads as $thread }}
2 <div id="tread-wrapper-$thread.id" class="tread-wrapper">
3         {{ for $thread.items as $item }}
4                 {{if $item.comment_firstcollapsed}}
5                         <div class="hide-comments-outer">
6                         <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>
7                         </div>
8                         <div id="collapsed-comments-$thread.id" class="collapsed-comments" style="display: none;">
9                 {{endif}}
10                 {{if $item.comment_lastcollapsed}}</div>{{endif}}
11                 
12                 {{ if $item.type == tag }}
13                         {{ inc wall_item_tag.tpl }}{{ endinc }}
14                 {{ else }}
15                         {{ inc $item.template }}{{ endinc }}
16                 {{ endif }}
17                 
18         {{ endfor }}
19 </div>
20 {{ endfor }}
21
22 {{ if $dropping }}
23 <a href="#" onclick="deleteCheckedItems();return false;">
24         <span class="icon s22 delete text">$dropping</span>
25 </a>
26 {{ endif }}