]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/templates/wall_thread.tpl
85e12b808d8ddcff945c74dc96dc2d532fc3a510
[friendica.git] / view / theme / frio / templates / wall_thread.tpl
1
2 {{* This is a little bit hacky. This is needed to have some sort comments container.
3 It would be better if it would be done in friendica core but since core lacks this functionality
4 it is done in the theme
5
6 In short: the piece of code counts the total number of children of the toplevelpost
7 - this are usaly all posts with thread_level = 2 - and stores it in variable $top_children_total.
8 The first time a children which hits thread_level = 2 and $top_child = 1 opens the div.
9
10 Everytime when a children with top_level = 2 comes up $top_child_nr rises with 1.
11 The div get's closed if thread_level = 2 and the value of $top_child_nr is the same
12 as the value of $top_child_total (this is done at the end of this file)
13 *}}
14 {{if $item.thread_level==1}}
15         {{assign var="top_child_total" value=count($item.children)}}
16         {{assign var="top_child_nr" value=0}}
17 {{/if}}
18 {{if $item.thread_level==2}}
19         {{assign var="top_child_nr" value=$top_child_nr+1 scope=parent}}
20 {{/if}}
21
22 {{if $item.thread_level==2 && $top_child_nr==1}}
23 <div class="comment-container well well-sm"> <!--top-child-begin-->
24 {{/if}}
25 {{* end of hacky part to count childrens *}}
26
27
28 {{if $mode == display}}
29 {{else}}
30 {{if $item.comment_firstcollapsed}}
31         {{*
32         <div align="center" style="margin-top:-34px;">
33                 <div class="hide-comments-outer btn btn-default" onclick="showHideComments({{$item.id}});">
34                         <span id="hide-comments-total-{{$item.id}}" class="hide-comments-total">{{$item.num_comments}}</span>
35                         <span id="hide-comments-{{$item.id}}" class="hide-comments fakelink">{{$item.hide_text}}</span>
36                 </div>
37         </div>
38         <div id="collapsed-comments-{{$item.id}}" class="collapsed-comments" style="display: none;">
39         *}}
40
41         {{if $item.thread_level<3}}
42                 <div class="hide-comments-outer-wrapper">
43                         <div class="hide-comments-outer fakelink" onclick="showHideComments({{$item.id}});">
44                                 <span id="hide-comments-total-{{$item.id}}"
45                                         class="hide-comments-total">{{$item.num_comments}}</span>
46                                 <span id="hide-comments-{{$item.id}}"
47                                         class="hide-comments">{{$item.hide_text}}</span>
48                         </div>
49                         <hr />
50                 </div>
51                 <div id="collapsed-comments-{{$item.id}}" class="collapsed-comments" style="display: none;">
52         {{else}}
53                 <div id="collapsed-comments-{{$item.id}}" class="collapsed-comments" style="display: block;">
54         {{/if}}
55 {{/if}}
56 {{/if}}
57
58 {{* TODO => Unknown block *}}
59 <div class="wall-item-decor" style="display:none;">
60         {{if $item.star}}
61         <span class="icon s22 star {{$item.isstarred}}" id="starred-{{$item.id}}" title="{{$item.star.starred}}">{{$item.star.starred}}</span>
62         {{/if}}
63         {{if $item.lock}}<span class="navicon lock fakelink" onclick="lockview(event,{{$item.id}});" title="{{$item.lock}}"></span><span class="fa fa-lock"></span>{{/if}}
64 </div>
65 {{* /TODO => Unknown block *}}
66
67
68 {{* Use a different div container in dependence max thread-level = 7 *}}
69 {{if $item.thread_level<7}}
70 <div class="item-{{$item.id}} wall-item-container {{$item.indent}} {{$item.shiny}} {{$item.network}} thread_level_{{$item.thread_level}} {{if $item.thread_level==1}}panel-body h-entry{{else}}u-comment h-cite{{/if}}" id="item-{{$item.guid}}"><!-- wall-item-container -->
71 {{else}}
72 <div class="item-{{$item.id}} wall-item-container {{$item.indent}} {{$item.shiny}} {{$item.network}} thread_level_7 u-comment h-cite" id="item-{{$item.guid}}">
73 {{/if}}
74 {{if $item.thread_level==1}}
75 <span class="commented" style="display: none;">{{$item.commented}}</span>
76 <span class="received" style="display: none;">{{$item.received}}</span>
77 <span class="created" style="display: none;">{{$item.created_date}}</span>
78 <span class="id" style="display: none;">{{$item.id}}</span>
79 {{/if}}
80         <div class="media">
81                 {{* Put addional actions in a top-right dropdown menu *}}
82
83                 <ul class="nav nav-pills preferences">
84                         <li><span class="wall-item-network" title="{{$item.app}}">{{$item.network_name}}</span></li>
85
86                         {{if $item.plink || $item.drop.dropping || $item.edpost || $item.ignore || $item.tagger || $item.star || $item.filer || $item.subthread}}
87                         <li class="dropdown">
88                                 <button type="button" class="btn-link dropdown-toggle" data-toggle="dropdown" id="dropdownMenuTools-{{$item.id}}" aria-haspopup="true" aria-expanded="false"><i class="fa fa-angle-down" aria-hidden="true"></i></button>
89
90                                 <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="dropdownMenuTools-{{$item.id}}">
91                                         {{if $item.plink}}      {{*link to the original source of the item *}}
92                                         <li role="menuitem">
93                                                 <a title="{{$item.plink.title}}" href="{{$item.plink.href}}" class="navicon plink u-url"><i class="fa fa-external-link" aria-hidden="true"></i> {{$item.plink.title}}</a>
94                                         </li>
95                                         {{/if}}
96
97                                         {{if $item.edpost}} {{* edit the posting *}}
98                                         <li role="menuitem">
99                                                 <button type="button" onclick="editpost('{{$item.edpost.0}}?mode=none');" title="{{$item.edpost.1}}" class="btn-link navicon pencil"><i class="fa fa-pencil" aria-hidden="true"></i> {{$item.edpost.1}}</button>
100                                         </li>
101                                         {{/if}}
102
103                                         {{if $item.tagger}} {{* tag the post *}}
104                                         <li role="menuitem">
105                                                 <button type="button" id="tagger-{{$item.id}}" onclick="itemTag({{$item.id}});" class="btn-link {{$item.tagger.class}}" title="{{$item.tagger.add}}"><i class="fa fa-tag" aria-hidden="true"></i> {{$item.tagger.add}}</button>
106                                         </li>
107                                         {{/if}}
108
109                                         {{if $item.filer}}
110                                         <li role="menuitem">
111                                                 <button type="button" id="filer-{{$item.id}}" onclick="itemFiler({{$item.id}});" class="btn-link filer-item filer-icon" title="{{$item.filer}}"><i class="fa fa-folder" aria-hidden="true"></i>&nbsp;{{$item.filer}}</button>
112                                         </li>
113                                         {{/if}}
114
115                                         {{if $item.star}}
116                                         <li role="menuitem">
117                                                 <button type="button" id="star-{{$item.id}}" onclick="dostar({{$item.id}});" class="btn-link {{$item.star.classdo}}" title="{{$item.star.do}}"><i class="fa fa-star-o" aria-hidden="true"></i>&nbsp;{{$item.star.do}}</button>
118                                                 <button type="button" id="unstar-{{$item.id}}" onclick="dostar({{$item.id}});" class="btn-link {{$item.star.classundo}}" title="{{$item.star.undo}}"><i class="fa fa-star" aria-hidden="true"></i>&nbsp;{{$item.star.undo}}</button>
119                                         </li>
120                                         {{/if}}
121
122                                         {{if $item.subthread}}
123                                         <li role="menuitem">
124                                                 <button type="button" id="subthread-{{$item.id}}" onclick="{{$item.subthread.action}}" class="btn-link" title="{{$item.subthread.title}}"><i class="fa fa-plus" aria-hidden="true"></i>&nbsp;{{$item.subthread.title}}</button>
125                                         </li>
126                                         {{/if}}
127
128                                         {{if $item.ignore || $item.drop.dropping}}
129                                         <li role="separator" class="divider"></li>
130                                         {{/if}}
131
132                                         {{if $item.ignore}}
133                                                 <li role="menuitem">
134                                                         <button type="button" id="ignore-{{$item.id}}" onclick="doignore({{$item.id}});" class="btn-link {{$item.ignore.classdo}}" title="{{$item.ignore.do}}"><i class="fa fa-eye-slash" aria-hidden="true"></i> {{$item.ignore.do}}</button>
135                                                 </li>
136                                                 <li role="menuitem">
137                                                         <button type="button" id="unignore-{{$item.id}}" onclick="doignore({{$item.id}});" class="btn-link {{$item.ignore.classundo}}"  title="{{$item.ignore.undo}}"><i class="fa fa-eye" aria-hidden="true"></i> {{$item.ignore.undo}}</button>
138                                                 </li>
139                                         {{/if}}
140
141                                         {{if $item.drop.dropping}}
142                                         <li role="menuitem">
143                                                 <button type="button" class="btn-link navicon delete" onclick="dropItem('item/drop/{{$item.id}}/{{$item.return}}', 'item-{{$item.guid}}');" title="{{$item.drop.delete}}"><i class="fa fa-trash" aria-hidden="true"></i> {{$item.drop.delete}}</button>
144                                         </li>
145                                         {{/if}}
146                                 </ul>
147                         </li>
148                         {{/if}}
149                 </ul>
150
151
152                 {{* The avatar picture and the photo-menu *}}
153                 <div class="dropdown pull-left"><!-- Dropdown -->
154                         {{if $item.thread_level==1}}
155                         <div class="hidden-sm hidden-xs contact-photo-wrapper mframe{{if $item.owner_url}} wwfrom{{/if}} p-author h-card">
156                                 <a class="userinfo  u-url" id="wall-item-photo-menu-{{$item.id}}" href="{{$item.profile_url}}">
157                                         <div class="contact-photo-image-wrapper">
158                                                 <img src="{{$item.thumb}}" class="contact-photo media-object {{$item.sparkle}} p-name u-photo" id="wall-item-photo-{{$item.id}}" alt="{{$item.name}}" />
159                                         </div>
160                                 </a>
161                         </div>
162                         <div class="hidden-lg hidden-md contact-photo-wrapper mframe{{if $item.owner_url}} wwfrom{{/if}}">
163                                 <a class="userinfo u-url" id="wall-item-photo-menu-xs-{{$item.id}}" href="{{$item.profile_url}}">
164                                         <div class="contact-photo-image-wrapper">
165                                                 <img src="{{$item.thumb}}" class="contact-photo-xs media-object {{$item.sparkle}}" id="wall-item-photo-xs-{{$item.id}}" alt="{{$item.name}}" />
166                                         </div>
167                                 </a>
168                         </div>
169
170                         {{* The litle overlay avatar picture if someone is posting directly to a wall or a forum *}}
171                         {{if $item.owner_url}}
172                         <div aria-hidden="true" class="contact-photo-wrapper mframe wwto" id="wall-item-ownerphoto-wrapper-{{$item.id}}" >
173                                 <a href="{{$item.owner_url}}" target="redir" title="{{$item.olinktitle}}" class="contact-photo-link" id="wall-item-ownerphoto-link-{{$item.id}}">
174                                         <img src="{{$item.owner_photo}}" class="contact-photo {{$item.osparkle}}" id="wall-item-ownerphoto-{{$item.id}}" alt="{{$item.owner_name}}" />
175                                 </a>
176                         </div>
177                         {{/if}}
178
179                         {{/if}} {{*End if $item.thread_level==1}}
180
181                         {{* The avatar picture for comments *}}
182                         {{if $item.thread_level!=1}}
183                         <div class="contact-photo-wrapper mframe{{if $item.owner_url}} wwfrom{{/if}} p-author h-card">
184                                 <a class="userinfo u-url" id="wall-item-photo-menu-{{$item.id}}" href="{{$item.profile_url}}">
185                                         <div class="contact-photo-image-wrapper">
186                                                 <img src="{{$item.thumb}}" class="contact-photo-xs media-object {{$item.sparkle}} p-name u-photo" id="wall-item-photo-comment-{{$item.id}}" alt="{{$item.name}}" />
187                                         </div>
188                                 </a>
189                         </div>
190                         {{/if}}
191                 </div><!-- ./Dropdown -->
192
193
194
195                 {{* contact info header*}}
196                 {{if $item.thread_level==1}}
197                 <div role="heading " aria-level="{{$item.thread_level}}" class="contact-info hidden-sm hidden-xs media-body"><!-- <= For computer -->
198                         <h4 class="media-heading"><a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link userinfo"><span class="wall-item-name {{$item.sparkle}}">{{$item.name}}</span></a>
199                         {{if $item.owner_url}}{{$item.via}} <a href="{{$item.owner_url}}" target="redir" title="{{$item.olinktitle}}" class="wall-item-name-link userinfo"><span class="wall-item-name {{$item.osparkle}}" id="wall-item-ownername-{{$item.id}}">{{$item.owner_name}}</span></a>{{/if}}
200                         {{if $item.lock}}<span class="navicon lock fakelink" onClick="lockview(event,{{$item.id}});" title="{{$item.lock}}" data-toggle="tooltip">&nbsp;<small><i class="fa fa-lock" aria-hidden="true"></i></small></span>{{/if}}
201                         </h4>
202
203                         <div class="additional-info text-muted">
204                                 <div id="wall-item-ago-{{$item.id}}" class="wall-item-ago">
205                                         <small>
206                                                 <a href="{{$item.plink.orig}}">
207                                                         <span class="time" title="{{$item.localtime}}" data-toggle="tooltip">
208                                                                 <time class="dt-published" datetime="{{$item.localtime}}">{{$item.ago}}</time>
209                                                         </span>
210                                                 </a>
211                                                 {{if $item.owner_self}}
212                                                         &bullet;
213                                                         {{include file="sub/delivery_count.tpl" delivery=$item.delivery}}
214                                                 {{/if}}
215                                         </small>
216                                 </div>
217
218                                 {{if $item.location}}
219                                 <div id="wall-item-location-{{$item.id}}" class="wall-item-location">
220                                         <small><span class="location">({{$item.location nofilter}})</span></small>
221                                 </div>
222                                 {{/if}}
223                         </div>
224                         {{* @todo $item.created have to be inserted *}}
225                 </div>
226
227                 {{* contact info header for smartphones *}}
228                 <div role="heading " aria-level="{{$item.thread_level}}" class="contact-info-xs hidden-lg hidden-md"><!-- <= For smartphone (responsive) -->
229                         <h5 class="media-heading">
230                                 <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link userinfo"><span>{{$item.name}}</span></a>
231                                 <p class="text-muted">
232                                         <small>
233                                                 <a class="time" href="{{$item.plink.orig}}"><span class="wall-item-ago">{{$item.ago}}</span></a>
234                                                 {{if $item.location}}&nbsp;&mdash;&nbsp;({{$item.location nofilter}}){{/if}}
235                                                 {{if $item.owner_self}}
236                                                         &bullet;
237                                                         {{include file="sub/delivery_count.tpl" delivery=$item.delivery}}
238                                                 {{/if}}
239                                         </small>
240                                 </p>
241                         </h5>
242                 </div>
243                 {{/if}} {{* End of if $item.thread_level==1 *}}
244
245                 {{* contact info header for comments *}}
246                 {{if $item.thread_level!=1}}
247                 <div class="media-body">{{*this is the media body for comments - this div must be closed at the end of the file *}}
248                 <div role="heading " aria-level="{{$item.thread_level}}" class="contact-info-comment">
249                         <h5 class="media-heading">
250                                 <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link userinfo"><span class="fakelink">{{$item.name}}</span></a>
251                                 <span class="text-muted">
252                                         <small>
253                                                 <a class="time" href="{{$item.plink.orig}}" title="{{$item.localtime}}" data-toggle="tooltip">{{$item.ago}}</a>
254                                                 {{if $item.location}}&nbsp;&mdash;&nbsp;({{$item.location nofilter}}){{/if}}
255                                                 {{if $item.owner_self}}
256                                                         &bullet;
257                                                         {{include file="sub/delivery_count.tpl" delivery=$item.delivery}}
258                                                 {{/if}}
259                                         </small>
260                                 </span>
261                         </h5>
262                 </div>
263                 {{/if}}
264
265                 <div class="clearfix"></div>
266
267                 {{* Insert Line to seperate item header and item content visually *}}
268                 {{if $item.thread_level==1}}<hr />{{/if}}
269
270                 {{* item content *}}
271                 <div class="wall-item-content {{$item.type}}" id="wall-item-content-{{$item.id}}">
272                         {{* insert some space if it's an top-level post *}}
273                         {{if $item.thread_level==1}}
274                         <div class="wall-spacer">&nbsp;</div> <!-- use padding/margin instead-->
275                         {{/if}}
276
277                         {{if $item.title}}
278                         <span class="wall-item-title" id="wall-item-title-{{$item.id}}"><h4 class="media-heading"><a href="{{$item.plink.href}}" class="{{$item.sparkle}} p-name">{{$item.title}}</a></h4><br /></span>
279                         {{/if}}
280
281                         <div class="wall-item-body e-content {{if !$item.title}}p-name{{/if}}" id="wall-item-body-{{$item.id}}">{{$item.body nofilter}}</div>
282                 </div>
283
284                 <!-- TODO -->
285                 <div class="wall-item-bottom">
286                         <div class="wall-item-links"></div>
287                         <div class="wall-item-tags">
288                 {{if !$item.suppress_tags}}
289                         {{foreach $item.hashtags as $tag}}
290                                 <span class="tag label btn-info sm">{{$tag nofilter}} <i class="fa fa-bolt" aria-hidden="true"></i></span>
291                         {{/foreach}}
292
293                         {{foreach $item.mentions as $tag}}
294                                 <span class="mention label btn-warning sm">{{$tag nofilter}} <i class="fa fa-user" aria-hidden="true"></i></span>
295                         {{/foreach}}
296                 {{/if}}
297
298                         {{foreach $item.folders as $cat}}
299                                 <span class="folder label btn-danger sm"><span class="p-category">{{$cat.name}}</span></a>{{if $cat.removeurl}} (<a href="{{$cat.removeurl}}" title="{{$remove}}">x</a>) {{/if}} </span>
300                         {{/foreach}}
301
302                         {{foreach $item.categories as $cat}}
303                                 <span class="category label btn-success sm"><span class="p-category">{{$cat.name}}</span></a>{{if $cat.removeurl}} (<a href="{{$cat.removeurl}}" title="{{$remove}}">x</a>) {{/if}} </span>
304                         {{/foreach}}
305                         </div>
306                         {{if $item.edited}}<div class="itemedited text-muted">{{$item.edited['label']}} (<span title="{{$item.edited['date']}}">{{$item.edited['relative']}}</span>)</div>{{/if}}
307                 </div>
308                 <!-- ./TODO -->
309
310                 <!-- <hr /> -->
311                 <div class="wall-item-actions">
312                         {{* Action buttons to interact with the item (like: like, dislike, share and so on *}}
313                         <div class="wall-item-actions-left pull-left">
314                                 <!--comment this out to try something different {{if $item.threaded}}{{if $item.comment}}
315                                 <div id="button-reply" class="pull-left">
316                                         <button type="button" class="btn-link" id="comment-{{$item.id}}" onclick="openClose('item-comments-{{$item.id}}'); commentExpand({{$item.id}});"><i class="fa fa-reply" title="{{$item.switchcomment}}"></i> </span>
317                                 </div>
318                                 {{/if}}{{/if}}-->
319
320                                 {{if $item.threaded}}{{/if}}
321
322                                 {{* Buttons for like and dislike *}}
323                                 {{if $item.vote}}
324                                         {{if $item.vote.like}}
325                                         <button type="button" class="btn-link button-likes{{if $item.responses.like.self}} active" aria-pressed="true{{/if}}" id="like-{{$item.id}}" title="{{$item.vote.like.0}}" onclick="doLikeAction({{$item.id}},'like');" data-toggle="button"><i class="fa fa-thumbs-up" aria-hidden="true"></i>&nbsp;{{$item.vote.like.1}}</button>
326                                         {{/if}}
327                                         {{if $item.vote.like AND $item.vote.dislike}}
328                                         <span role="presentation" class="separator">•</span>
329                                         {{/if}}
330                                         {{if $item.vote.dislike}}
331                                         <button type="button" class="btn-link button-likes{{if $item.responses.dislike.self}} active" aria-pressed="true{{/if}}" id="dislike-{{$item.id}}" title="{{$item.vote.dislike.0}}" onclick="doLikeAction({{$item.id}},'dislike');" data-toggle="button"><i class="fa fa-thumbs-down" aria-hidden="true"></i>&nbsp;{{$item.vote.dislike.1}}</button>
332                                         {{/if}}
333
334                                         {{if ($item.vote.like OR $item.vote.dislike) AND $item.comment}}
335                                         <span role="presentation" class="separator">•</span>
336                                         {{/if}}
337                                 {{/if}}
338
339                                 {{* Button to open the comment text field *}}
340                                 {{if $item.comment}}
341                                 <button type="button" class="btn-link button-comments" id="comment-{{$item.id}}" title="{{$item.switchcomment}}" {{if $item.thread_level != 1}}onclick="openClose('item-comments-{{$item.id}}'); commentExpand({{$item.id}});" {{else}} onclick="showHide('item-comments-{{$item.id}}'); commentExpand({{$item.id}});"{{/if}}><i class="fa fa-commenting" aria-hidden="true"></i>&nbsp;{{$item.switchcomment}}</button>
342                                 {{/if}}
343
344                                 {{* Button for sharing the item *}}
345                                 {{if $item.vote}}
346                                         {{if $item.vote.share}}
347                                                 {{if $item.vote.like OR $item.vote.dislike OR $item.comment}}
348                                         <span role="presentation" class="separator">•</span>
349                                                 {{/if}}
350                                         <button type="button" class="btn-link button-votes" id="share-{{$item.id}}" title="{{$item.vote.share.0}}" onclick="jotShare({{$item.id}});"><i class="fa fa-retweet" aria-hidden="true"></i>&nbsp;{{$item.vote.share.1}}</button>
351                                         {{/if}}
352                                 {{/if}}
353                                 <img id="like-rotator-{{$item.id}}" class="like-rotator" src="images/rotator.gif" alt="{{$item.wait}}" title="{{$item.wait}}" style="display: none;" />
354                         </div>
355
356                         <div class="wall-item-actions-right pull-right">
357                                 {{* Event attendance buttons *}}
358                                 {{if $item.isevent}}
359                                 <div class="vote-event">
360                                         <button type="button" class="btn btn-xs btn-default button-event{{if $item.responses.attendyes.self}} active" aria-pressed="true{{/if}}" id="attendyes-{{$item.id}}" title="{{$item.attend.0}}" onclick="doLikeAction({{$item.id}},'attendyes');"><i class="fa fa-check" aria-hidden="true"><span class="sr-only">{{$item.attend.0}}</span></i></button>
361                                         <button type="button" class="btn btn-xs btn-default button-event{{if $item.responses.attendno.self}} active" aria-pressed="true{{/if}}" id="attendno-{{$item.id}}" title="{{$item.attend.1}}" onclick="doLikeAction({{$item.id}},'attendno');"><i class="fa fa-times" aria-hidden="true"><span class="sr-only">{{$item.attend.1}}</span></i></button>
362                                         <button type="button" class="btn btn-xs btn-default button-event{{if $item.responses.attendmaybe.self}} active" aria-pressed="true{{/if}}" id="attendmaybe-{{$item.id}}" title="{{$item.attend.2}}" onclick="doLikeAction({{$item.id}},'attendmaybe');"><i class="fa fa-question" aria-hidden="true"><span class="sr-only">{{$item.attend.2}}</span></i></button>
363                                 </div>
364                                 {{/if}}
365
366                                 <div class="pull-right checkbox">
367                                         {{if $item.drop.pagedrop}}
368                                         <input type="checkbox" title="{{$item.drop.select}}" name="itemselected[]" id="checkbox-{{$item.id}}" class="item-select" value="{{$item.id}}" />
369                                         <label for="checkbox-{{$item.id}}"></label>
370                                 {{/if}}
371                                 </div>
372                         </div>
373                         <div class="clearfix"></div>
374                 </div><!--./wall-item-actions-->
375
376                 <div class="wall-item-links"></div>
377
378                 {{* Display likes, dislike and attendance stats *}}
379                 {{if $item.responses}}
380                         <div class="wall-item-responses">
381                                 {{foreach $item.responses as $verb=>$response}}
382                                 <div class="wall-item-{{$verb}}" id="wall-item-{{$verb}}-{{$item.id}}">{{$response.output nofilter}}</div>
383                                 {{/foreach}}
384                         </div>
385                 {{/if}}
386
387                 {{if $item.thread_level!=1}}
388                 </div><!--./media-body from for comments-->
389                 <hr />
390                 {{/if}}
391
392
393                 {{* Insert comment box of threaded children *}}
394                 {{if $item.threaded}}{{if $item.comment}}{{if $item.indent==comment}}
395                 <div class="wall-item-comment-wrapper" id="item-comments-{{$item.id}}" style="display: none;">
396                         {{$item.comment nofilter}}
397                 </div>
398                 {{/if}}{{/if}}{{/if}}
399
400
401                 {{foreach $item.children as $child}}
402                         {{*
403                         {{if $child.type == tag}}
404                                 {{include file="wall_item_tag.tpl" item=$child}}
405                         {{else}}
406                                 {{include file="{{$item.template}}" item=$child}}
407                         {{/if}}
408                         *}}
409                         {{include file="{{$item.template}}" item=$child}}
410                 {{/foreach}}
411
412                 {{* Insert the comment box of the top level post at the bottom of the thread.
413                         Display this comment box if there are any comments. If not hide it. In this
414                         case it could be opend with the "comment" button *}}
415                 {{if $item.total_comments_num}}
416                         {{if $item.threaded}}{{if $item.comment}}{{if $item.thread_level==1}}
417                                 <div class="wall-item-comment-wrapper well well-small" id="item-comments-{{$item.id}}">{{$item.comment nofilter}}</div>
418                         {{/if}}{{/if}}{{/if}}
419
420                         {{if $item.flatten}}
421                                 <div class="wall-item-comment-wrapper well well-small" id="item-comments-{{$item.id}}">{{$item.comment nofilter}}</div>
422                         {{/if}}
423                 {{else}}
424                         {{if $item.threaded}}{{if $item.comment}}{{if $item.thread_level==1}}
425                                 <div class="wall-item-comment-wrapper well well-small" id="item-comments-{{$item.id}}" style="display: none;">{{$item.comment nofilter}}</div>
426                         {{/if}}{{/if}}{{/if}}
427
428                         {{if $item.flatten}}
429                                 <div class="wall-item-comment-wrapper well well-small" id="item-comments-{{$item.id}}" style="display: none;">{{$item.comment nofilter}}</div>
430                         {{/if}}
431                 {{/if}}
432         </div><!-- /media -->
433 </div><!-- ./panel-body or ./wall-item-container -->
434
435
436 {{if $mode == display}}
437 {{else}}
438 {{if $item.comment_lastcollapsed}}</div>{{/if}}
439 {{/if}}
440
441
442 {{* close the comment-container div if no more thread_level = 2 children are left *}}
443 {{if $item.thread_level==2 && $top_child_nr==$top_child_total}}
444 </div><!--./comment-container-->
445 {{/if}}