]> git.mxchange.org Git - friendica.git/blob - view/theme/dispy/conversation.tpl
merged
[friendica.git] / view / theme / dispy / 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                 {{ inc $item.template }}{{ endinc }}
13                 
14                 
15         {{ endfor }}
16 </div>
17 {{ endfor }}
18
19 {{ if $dropping }}
20 <div class="delete-checked">
21 <a href="#" onclick="deleteCheckedItems();return false;"><span class="icon delete"></span><span class="s22 text">$dropping</span></a>
22 </div>
23 {{ endif }}