]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/templates/wall_thread.tpl
08057a1a95daabc6d67fd51cc25a0fdaca66fc67
[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" count($item.children)}}
16         {{assign var="top_child_nr" 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 => Unknow 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 => Unknow block -->
66
67
68
69 {{* Use a different div container in dependence max thread-level = 7 *}}
70 {{if $item.thread_level<7}}
71 <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 -->
72 {{else}}
73 <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}}">
74  {{/if}}
75         <div class="media">
76                 {{* Put addional actions in a top-right dropdown menu *}}
77
78                 <ul class="nav nav-pills preferences">
79                         <li><span class="wall-item-network" title="{{$item.app}}">{{$item.network_name}}</span></li>
80
81                         {{if $item.plink || $item.drop.dropping || $item.edpost || $item.ignore || $item.tagger || $item.star || $item.filer}}
82                         <li class="dropdown">
83                                 <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"></i></button>
84
85                                 <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="dropdownMenuTools-{{$item.id}}">
86                                         {{if $item.plink}}      {{*link to the original source of the item *}}
87                                         <li role="menuitem">
88                                                 <a title="{{$item.plink.title}}" href="{{$item.plink.href}}" class="navicon plink u-url"><i class="fa fa-external-link"></i> {{$item.plink.title}}</a>
89                                         </li>
90                                         {{/if}}
91
92                                         {{if $item.edpost}} {{* edit the posting *}}
93                                         <li role="menuitem">
94                                                 <button type="button" onclick="editpost('{{$item.edpost.0}}?mode=none');" title="{{$item.edpost.1}}" class="btn-link navicon pencil"><i class="fa fa-pencil"></i> {{$item.edpost.1}}</button>
95                                         </li>
96                                         {{/if}}
97
98                                         {{if $item.tagger}} {{* tag the post *}}
99                                         <li role="menuitem">
100                                                 <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"></i> {{$item.tagger.add}}</button>
101                                         </li>
102                                         {{/if}}
103
104                                         {{if $item.filer}}
105                                         <li role="menuitem">
106                                                 <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"></i>&nbsp;{{$item.filer}}</button>
107                                         </li>
108                                         {{/if}}
109
110                                         {{if $item.star}}
111                                         <li role="menuitem">
112                                                 <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"></i>&nbsp;{{$item.star.do}}</button>
113                                                 <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"></i>&nbsp;{{$item.star.undo}}</button>
114                                         </li>
115                                         {{/if}}
116
117                                         {{if $item.ignore || $item.drop.dropping}}
118                                         <li role="separator" class="divider"></li>
119                                         {{/if}}
120
121                                         {{if $item.ignore}}
122                                                 <li role="menuitem">
123                                                         <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"></i> {{$item.ignore.do}}</button>
124                                                 </li>
125                                                 <li role="menuitem">
126                                                         <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"></i> {{$item.ignore.undo}}</button>
127                                                 </li>
128                                         {{/if}}
129
130                                         {{if $item.drop.dropping}}
131                                         <li role="menuitem">
132                                                 <button type="button" class="btn-link navicon delete" onclick="dropItem('item/drop/{{$item.id}}', 'item-{{$item.guid}}');" title="{{$item.drop.delete}}"><i class="fa fa-trash"></i> {{$item.drop.delete}}</button>
133                                         </li>
134                                         {{/if}}
135                                 </ul>
136                         </li>
137                         {{/if}}
138                 </ul>
139
140
141                 {{* The avatar picture and the photo-menu *}}
142                 <div class="dropdown pull-left"><!-- Dropdown -->
143                         {{if $item.thread_level==1}}
144                         <div class="hidden-sm hidden-xs contact-photo-wrapper mframe{{if $item.owner_url}} wwfrom{{/if}} p-author h-card">
145                                 <a class="userinfo" id="wall-item-photo-menu-{{$item.id}} u-url" href="{{$item.profile_url}}">
146                                         <div class="contact-photo-image-wrapper">
147                                                 <img src="{{$item.thumb}}" class="contact-photo media-object {{$item.sparkle}} p-name u-photo" id="wall-item-photo-{{$item.id}}" alt="{{$item.name}}" />
148                                         </div>
149                                 </a>
150                         </div>
151                         <div class="hidden-lg hidden-md contact-photo-wrapper mframe{{if $item.owner_url}} wwfrom{{/if}}">
152                                 <a class="userinfo" id="wall-item-photo-menu-{{$item.id}}" href="{{$item.profile_url}}">
153                                         <div class="contact-photo-image-wrapper">
154                                                 <img src="{{$item.thumb}}" class="contact-photo-xs media-object {{$item.sparkle}}" id="wall-item-photo-{{$item.id}}" alt="{{$item.name}}" />
155                                         </div>
156                                 </a>
157                         </div>
158
159                         {{* The litle overlay avatar picture if someone is posting directly to a wall or a forum *}}
160                         {{if $item.owner_url}}
161                         <div aria-hidden="true" class="contact-photo-wrapper mframe wwto" id="wall-item-ownerphoto-wrapper-{{$item.id}}" >
162                                 <a href="{{$item.owner_url}}" target="redir" title="{{$item.olinktitle}}" class="contact-photo-link" id="wall-item-ownerphoto-link-{{$item.id}}">
163                                         <img src="{{$item.owner_photo}}" class="contact-photo {{$item.osparkle}}" id="wall-item-ownerphoto-{{$item.id}}" alt="{{$item.owner_name}}" />
164                                 </a>
165                         </div>
166                         {{/if}}
167
168                         {{/if}} {{*End if $item.thread_level==1}}
169
170                         {{* The avatar picture for comments *}}
171                         {{if $item.thread_level!=1}}
172                         <div class="contact-photo-wrapper mframe{{if $item.owner_url}} wwfrom{{/if}} p-author h-card">
173                                 <a class="userinfo" id="wall-item-photo-menu-{{$item.id}} u-url" href="{{$item.profile_url}}">
174                                         <div class="contact-photo-image-wrapper">
175                                                 <img src="{{$item.thumb}}" class="contact-photo-xs media-object {{$item.sparkle}} p-name u-photo" id="wall-item-photo-{{$item.id}}" alt="{{$item.name}}" />
176                                         </div>
177                                 </a>
178                         </div>
179                         {{/if}}
180                 </div><!-- ./Dropdown -->
181
182
183
184                 {{* contact info header*}}
185                 {{if $item.thread_level==1}}
186                 <div role="heading " aria-level="{{$item.thread_level}}" class="contact-info hidden-sm hidden-xs media-body"><!-- <= For computer -->
187                         <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>
188                         {{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}}
189                         {{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"></i></small></span>{{/if}}
190                         </h4>
191
192                         <div class="additional-info text-muted">
193                                 <div id="wall-item-ago-{{$item.id}}" class="wall-item-ago">
194                                         <small><a href="{{$item.plink.orig}}"><span class="time" title="{{$item.localtime}}" data-toggle="tooltip"><time class="dt-published" datetime="{{$item.localtime}}">{{$item.ago}}</time></span></a></small>
195                                 </div>
196
197                                 {{if $item.location}}
198                                 <div id="wall-item-location-{{$item.id}}" class="wall-item-location">
199                                         <small><span class="location">({{$item.location}})</span></small>
200                                 </div>
201                                 {{/if}}
202                         </div>
203                         {{* @todo $item.created have to be inserted *}}
204                 </div>
205
206                 {{* contact info header for smartphones *}}
207                 <div role="heading " aria-level="{{$item.thread_level}}" class="contact-info-xs hidden-lg hidden-md"><!-- <= For smartphone (responsive) -->
208                         <h5 class="media-heading">
209                                 <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link userinfo"><span>{{$item.name}}</span></a>
210                                 <p class="text-muted">
211                                         <small><a class="time" href="{{$item.plink.orig}}"><span class="wall-item-ago">{{$item.ago}}</span></a> {{if $item.location}}&nbsp;&mdash;&nbsp;({{$item.location}}){{/if}}</small>
212                                 </p>
213                         </h5>
214                 </div>
215                 {{/if}} {{* End of if $item.thread_level==1 *}}
216
217                 {{* contact info header for comments *}}
218                 {{if $item.thread_level!=1}}
219                 <div class="media-body">{{*this is the media body for comments - this div must be closed at the end of the file *}}
220                 <div role="heading " aria-level="{{$item.thread_level}}" class="contact-info-comment">
221                         <h5 class="media-heading">
222                                 <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link userinfo"><span class="fakelink">{{$item.name}}</span></a>
223                                 <span class="text-muted">
224                                         <small><span title="{{$item.localtime}}" data-toggle="tooltip">{{$item.ago}}</span> {{if $item.location}}&nbsp;&mdash;&nbsp;({{$item.location}}){{/if}}</small>
225                                 </span>
226                         </h5>
227                 </div>
228                 {{/if}}
229
230                 <div class="clearfix"></div>
231
232                 {{* Insert Line to seperate item header and item content visually *}}
233                 {{if $item.thread_level==1}}<hr />{{/if}}
234
235                 {{* item content *}}
236                 <div itemprop="description" class="wall-item-content {{$item.type}}" id="wall-item-content-{{$item.id}}">
237                         {{* insert some space if it's an top-level post *}}
238                         {{if $item.thread_level==1}}
239                         <div style="height:10px;">&nbsp;</div> <!-- use padding/margin instead-->
240                         {{/if}}
241
242                         {{if $item.title}}
243                         <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>
244                         {{/if}}
245
246                         <div class="wall-item-body e-content {{if !$item.title}}p-name{{/if}}" id="wall-item-body-{{$item.id}}">{{$item.body}}</div>
247                 </div>
248
249                 <!-- TODO -->
250                 <div class="wall-item-bottom">
251                         <div class="wall-item-links">
252                         </div>
253                         <div class="wall-item-tags">
254                                 {{foreach $item.hashtags as $tag}}
255                                         <span class='tag label btn-info sm'>{{$tag}} <i class="fa fa-bolt"></i></span>
256                                 {{/foreach}}
257
258                                 {{foreach $item.mentions as $tag}}
259                                         <span class='mention label btn-warning sm'>{{$tag}} <i class="fa fa-user"></i></span>
260                                 {{/foreach}}
261
262                                 {{foreach $item.folders as $cat}}
263                                         <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>
264                                 {{/foreach}}
265
266                                 {{foreach $item.categories as $cat}}
267                                         <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>
268                                 {{/foreach}}
269                         </div>
270                                 {{if $item.edited}}<div class="itemedited text-muted">{{$item.edited['label']}} (<span title="{{$item.edited['date']}}">{{$item.edited['relative']}}</span>)</div>{{/if}}
271                 </div>
272                 <!-- ./TODO -->
273
274                 <!-- <hr /> -->
275                 <div class="wall-item-actions">
276                         {{* Action buttons to interact with the item (like: like, dislike, share and so on *}}
277                         <div class="wall-item-actions-left pull-left">
278                                 <!--comment this out to try something different {{if $item.threaded}}{{if $item.comment}}
279                                 <div id="button-reply" class="pull-left">
280                                         <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>
281                                 </div>
282                                 {{/if}}{{/if}}-->
283
284                                 {{if $item.threaded}}{{/if}}
285
286                                 {{* Buttons for like and dislike *}}
287                                 {{if $item.vote}}
288                                         {{if $item.vote.like}}
289                                         <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"></i>&nbsp;{{$item.vote.like.1}}</button>
290                                         {{/if}}
291                                         {{if $item.vote.like AND $item.vote.dislike}}
292                                         <span role="presentation" class="separator">•</span>
293                                         {{/if}}
294                                         {{if $item.vote.dislike}}
295                                         <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"></i>&nbsp;{{$item.vote.dislike.1}}</button>
296                                         {{/if}}
297
298                                         {{if ($item.vote.like OR $item.vote.dislike) AND $item.comment}}
299                                         <span role="presentation" class="separator">•</span>
300                                         {{/if}}
301                                 {{/if}}
302
303                                 {{* Button to open the comment text field *}}
304                                 {{if $item.comment}}
305                                 <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"></i>&nbsp;{{$item.switchcomment}}</button>
306                                 {{/if}}
307
308                                 {{* Button for sharing the item *}}
309                                 {{if $item.vote}}
310                                         {{if $item.vote.share}}
311                                                 {{if $item.vote.like OR $item.vote.dislike OR $item.comment}}
312                                         <span role="presentation" class="separator">•</span>
313                                                 {{/if}}
314                                         <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"></i>&nbsp;{{$item.vote.share.1}}</a>
315                                         {{/if}}
316                                 {{/if}}
317                 <img id="like-rotator-{{$item.id}}" class="like-rotator" src="images/rotator.gif" alt="{{$item.wait}}" title="{{$item.wait}}" style="display: none;" />
318                         </div>
319
320                         <div class="wall-item-actions-right pull-right">
321                                 {{* Event attendance buttons *}}
322                                 {{if $item.isevent}}
323                                 <div class="vote-event">
324                                         <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"><span class="sr-only">{{$item.attend.0}}</span></i></button>
325                                         <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"><span class="sr-only">{{$item.attend.1}}</span></i></button>
326                                         <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"><span class="sr-only">{{$item.attend.2}}</span></i></button>
327                                 </div>
328                                 {{/if}}
329
330                                 <div class="pull-right checkbox">
331                                         {{if $item.drop.pagedrop}}
332                                         <input type="checkbox" title="{{$item.drop.select}}" name="itemselected[]" id="checkbox-{{$item.id}}" class="item-select" value="{{$item.id}}" />
333                                         <label for="checkbox-{{$item.id}}"></label>
334                                 {{/if}}
335                                 </div>
336                         </div>
337                         <div class="clearfix"></div>
338                 </div><!--./wall-item-actions-->
339
340                 <div class="wall-item-links"></div>
341
342                 {{* Display likes, dislike and attendance stats *}}
343                 {{if $item.responses}}
344                         <div class="wall-item-responses">
345                                 {{foreach $item.responses as $verb=>$response}}
346                                 <div class="wall-item-{{$verb}}" id="wall-item-{{$verb}}-{{$item.id}}">{{$response.output}}</div>
347                                 {{/foreach}}
348                         </div>
349                 {{/if}}
350
351                 {{if $item.thread_level!=1}}
352                 </div><!--./media-body from for comments-->
353                 <hr />
354                 {{/if}}
355
356
357                 {{* Insert comment box of threaded children *}}
358                 {{if $item.threaded}}{{if $item.comment}}{{if $item.indent==comment}}
359                 <div class="wall-item-comment-wrapper" id="item-comments-{{$item.id}}" style="display: none;">
360                         {{$item.comment}}
361                 </div>
362                 {{/if}}{{/if}}{{/if}}
363
364
365                 {{foreach $item.children as $child}}
366                         {{*
367                         {{if $child.type == tag}}
368                                 {{include file="wall_item_tag.tpl" item=$child}}
369                         {{else}}
370                                 {{include file="{{$item.template}}" item=$child}}
371                         {{/if}}
372                         *}}
373                         {{include file="{{$item.template}}" item=$child}}
374                 {{/foreach}}
375
376                 {{* Insert the comment box of the top level post at the bottom of the thread.
377                         Display this comment box if there are any comments. If not hide it. In this
378                         case it could be opend with the "comment" button *}}
379                 {{if $item.total_comments_num}}
380                         {{if $item.threaded}}{{if $item.comment}}{{if $item.thread_level==1}}
381                                 <div class="wall-item-comment-wrapper well well-small" id="item-comments-{{$item.id}}">{{$item.comment}}</div>
382                         {{/if}}{{/if}}{{/if}}
383
384                         {{if $item.flatten}}
385                                 <div class="wall-item-comment-wrapper well well-small" id="item-comments-{{$item.id}}">{{$item.comment}}</div>
386                         {{/if}}
387                 {{else}}
388                         {{if $item.threaded}}{{if $item.comment}}{{if $item.thread_level==1}}
389                                 <div class="wall-item-comment-wrapper well well-small" id="item-comments-{{$item.id}}" style="display: none;">{{$item.comment}}</div>
390                         {{/if}}{{/if}}{{/if}}
391
392                         {{if $item.flatten}}
393                                 <div class="wall-item-comment-wrapper well well-small" id="item-comments-{{$item.id}}" style="display: none;">{{$item.comment}}</div>
394                         {{/if}}
395                 {{/if}}
396         </div><!-- /media -->
397 </div><!-- ./panel-body or ./wall-item-container -->
398
399
400 {{if $mode == display}}
401 {{else}}
402 {{if $item.comment_lastcollapsed}}</div>{{/if}}
403 {{/if}}
404
405
406 {{* close the comment-container div if no more thread_level = 2 children are left *}}
407 {{if $item.thread_level==2 && $top_child_nr==$top_child_total}}
408 </div><!--./comment-container-->
409 {{/if}}