]> git.mxchange.org Git - friendica.git/blob - view/templates/conversation.tpl
Merge branch '2021.03-rc' into copyright-2021
[friendica.git] / view / templates / conversation.tpl
1 {{$live_update nofilter}}
2 {{foreach $threads as $thread}}
3 <div id="tread-wrapper-{{$thread.id}}" class="tread-wrapper">
4         {{foreach $thread.items as $item}}
5                 {{if $item.comment_firstcollapsed}}
6                         <div class="hide-comments-outer">
7                         <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>
8                         </div>
9                         <div id="collapsed-comments-{{$thread.id}}" class="collapsed-comments" style="display: none;">
10                 {{/if}}
11                 {{if $item.comment_lastcollapsed}}</div>{{/if}}
12                 
13                 {{include file="{{$item.template}}"}}
14                 
15                 
16         {{/foreach}}
17 </div>
18 {{/foreach}}
19 {{if !$update}}
20 <div id="conversation-end"></div>
21
22 {{if $dropping}}
23 <div id="item-delete-selected" class="fakelink" onclick="deleteCheckedItems();">
24   <div id="item-delete-selected-icon" class="icon drophide" title="{{$dropping}}" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></div>
25   <div id="item-delete-selected-desc" >{{$dropping}}</div>
26 </div>
27 <div id="item-delete-selected-end"></div>
28 {{/if}}
29 {{/if}}