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