]> git.mxchange.org Git - friendica.git/blob - view/theme/duepuntozero/conversation.tpl
merged
[friendica.git] / view / theme / duepuntozero / 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 id="item-delete-selected" class="fakelink" onclick="deleteCheckedItems();">
21   <div id="item-delete-selected-icon" class="icon drophide" title="$dropping" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></div>
22   <div id="item-delete-selected-desc" >$dropping</div>
23 </div>
24 <div id="item-delete-selected-end"></div>
25 {{ endif }}