2016-03-28 16:29:05 +02:00
|
|
|
<!-- TODO => Unknow block -->
|
|
|
|
<div class="wall-item-decor" style="display:none;">
|
|
|
|
<span class="icon s22 star {{$item.isstarred}}" id="starred-{{$item.id}}" title="{{$item.star.starred}}">{{$item.star.starred}}</span>
|
2017-03-03 07:19:49 +01:00
|
|
|
{{if $item.lock}}<span class="navicon lock fakelink" onclick="lockview(event, {{$item.id}});" title="{{$item.lock}}"></span><span class="fa fa-lock"></span>{{/if}}
|
2016-03-28 16:29:05 +02:00
|
|
|
<img id="like-rotator-{{$item.id}}" class="like-rotator" src="images/rotator.gif" alt="{{$item.wait}}" title="{{$item.wait}}" style="display: none;" />
|
|
|
|
</div>
|
|
|
|
<!-- ./TODO => Unknow block -->
|
|
|
|
|
|
|
|
|
2017-03-13 17:12:13 +01:00
|
|
|
<div class="panel" id="item-{{$item.guid}}">
|
2016-03-28 16:29:05 +02:00
|
|
|
<div class="wall-item-container panel-body{{$item.indent}} {{$item.shiny}} {{$item.previewing}}" >
|
|
|
|
<div class="media">
|
2016-05-28 13:08:43 +02:00
|
|
|
{{* Put additional actions in a top-right dropdown menu *}}
|
|
|
|
|
2016-03-28 16:29:05 +02:00
|
|
|
<ul class="nav nav-pills preferences">
|
2016-05-28 13:08:43 +02:00
|
|
|
<li><span class="wall-item-network" title="{{$item.app}}">{{$item.network_name}}</span></li>
|
|
|
|
|
|
|
|
{{if $item.plink || $item.star || $item.drop.dropping || $item.edpost}}
|
2016-03-28 16:29:05 +02:00
|
|
|
<li class="dropdown">
|
2017-03-03 07:19:49 +01:00
|
|
|
<button class="btn-link dropdown-toggle" data-toggle="dropdown" id="dropdownMenuTools-{{$item.id}}" type="button" aria-haspopup="true" aria-expanded="false"><i class="fa fa-angle-down"></i></button>
|
2016-03-28 16:29:05 +02:00
|
|
|
|
|
|
|
<ul class="dropdown-menu pull-right" role="menu" aria-labelledby="dropdownMenuTools-{{$item.id}}">
|
2016-05-28 13:08:43 +02:00
|
|
|
{{if $item.plink}} {{*link to the original source of the item *}}
|
2017-03-03 07:19:49 +01:00
|
|
|
<li role="menuitem">
|
|
|
|
<a title="{{$item.plink.title}}" href="{{$item.plink.href}}" class="navicon plink"><i class="fa fa-external-link"></i> {{$item.plink.title}}</a>
|
|
|
|
</li>
|
|
|
|
{{/if}}
|
2016-05-28 13:08:43 +02:00
|
|
|
|
2016-04-26 14:07:40 +02:00
|
|
|
{{if $item.edpost}} {{* edit the posting *}}
|
2016-04-26 14:26:19 +02:00
|
|
|
<li role="menuitem">
|
2017-03-03 07:19:49 +01:00
|
|
|
<button type="button" href="{{$item.edpost.0}}" title="{{$item.edpost.1}}" class="btn-link navicon pencil"><i class="fa fa-pencil"></i> {{$item.edpost.1}}</button>
|
2016-03-28 16:29:05 +02:00
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
|
2016-04-26 14:07:40 +02:00
|
|
|
{{if $item.tagger}} {{* tag the post *}}
|
2016-04-26 14:26:19 +02:00
|
|
|
<li role="menuitem">
|
2017-03-03 07:19:49 +01:00
|
|
|
<button type="button" id="tagger-{{$item.id}}" onclick="itemTag({{$item.id}}); return false;" class="btn-link {{$item.tagger.class}}" title="{{$item.tagger.add}}"><i class="fa fa-tag"></i> {{$item.tagger.add}}</button>
|
2016-03-28 16:29:05 +02:00
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
|
2016-04-26 14:07:40 +02:00
|
|
|
{{if $item.filer}}
|
2016-04-26 14:26:19 +02:00
|
|
|
<li role="menuitem">
|
2017-03-03 07:19:49 +01:00
|
|
|
<button type="button" id="filer-{{$item.id}}" onclick="itemFiler({{$item.id}}); return false;" class="btn-link filer-item filer-icon" title="{{$item.filer}}"><i class="fa fa-folder"></i> {{$item.filer}}</button>
|
2016-03-28 16:29:05 +02:00
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{if $item.star}}
|
2016-04-26 14:26:19 +02:00
|
|
|
<li role="menuitem">
|
2017-03-03 07:19:49 +01:00
|
|
|
<button type="button" id="star-{{$item.id}}" onclick="dostar({{$item.id}}); return false;" class="btn-link {{$item.star.classdo}}" title="{{$item.star.do}}"><i class="fa fa-star-o"></i> {{$item.star.do}}</button>
|
|
|
|
<button type="button" id="unstar-{{$item.id}}" onclick="dostar({{$item.id}}); return false;" class="btn-link {{$item.star.classundo}}" title="{{$item.star.undo}}"><i class="fa fa-star"></i> {{$item.star.undo}}</button>
|
2016-03-28 16:29:05 +02:00
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
|
2016-04-26 14:07:40 +02:00
|
|
|
{{if $item.drop.dropping}}
|
2016-04-26 14:26:19 +02:00
|
|
|
<li role="separator" class="divider"></li>
|
|
|
|
<li role="menuitem">
|
2017-03-14 15:45:17 +01:00
|
|
|
<button type="button" class="btn-link navicon delete" onclick="dropItem('item/drop/{{$item.id}}', 'item-{{$item.guid}}'); return false;" title="{{$item.drop.delete}}"><i class="fa fa-trash"></i> {{$item.drop.delete}}</button>
|
2016-03-28 16:29:05 +02:00
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
</ul>
|
|
|
|
</li>
|
2016-05-28 13:08:43 +02:00
|
|
|
{{/if}}
|
2016-03-28 16:29:05 +02:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
{{* The avatar picture and the photo-menu *}}
|
|
|
|
<div class="dropdown pull-left"><!-- Dropdown -->
|
|
|
|
<div class="hidden-sm hidden-xs contact-photo-wrapper mframe{{if $item.owner_url}} wwfrom{{/if}}">
|
2016-05-05 21:10:08 +02:00
|
|
|
<a href="{{$item.profile_url}}" class="userinfo" id="wall-item-photo-menu-{{$item.id}}">
|
2016-03-28 16:29:05 +02:00
|
|
|
<div class="contact-photo-image-wrapper">
|
|
|
|
<img src="{{$item.thumb}}" class="contact-photo media-object {{$item.sparkle}}" id="wall-item-photo-{{$item.id}}" alt="{{$item.name}}" />
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="hidden-lg hidden-md contact-photo-wrapper mframe{{if $item.owner_url}} wwfrom{{/if}}">
|
2016-05-05 21:10:08 +02:00
|
|
|
<a href="{{$item.profile_url}}" class="userinfo" id="wall-item-photo-menu-{{$item.id}}">
|
2016-03-28 16:29:05 +02:00
|
|
|
<div class="contact-photo-image-wrapper">
|
|
|
|
<img src="{{$item.thumb}}" class="contact-photo-xs media-object {{$item.sparkle}}" id="wall-item-photo-{{$item.id}}" alt="{{$item.name}}" />
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div><!-- ./Dropdown -->
|
|
|
|
|
|
|
|
|
|
|
|
{{* contact info header*}}
|
|
|
|
<div role="heading " class="contact-info hidden-sm hidden-xs media-body"><!-- <= For computer -->
|
2016-05-05 21:10:08 +02:00
|
|
|
<h4 class="media-heading"><a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link userinfo"><span class="wall-item-name btn-link {{$item.sparkle}}">{{$item.name}}</span></a>
|
|
|
|
{{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}} btn-link" id="wall-item-ownername-{{$item.id}}">{{$item.owner_name}}</span></a>{{/if}}
|
2017-03-03 07:19:49 +01:00
|
|
|
{{if $item.lock}}<span class="navicon lock fakelink" onClick="lockview(event, {{$item.id}});" title="{{$item.lock}}"> <small><i class="fa fa-lock"></i></small></span>{{/if}}
|
2016-04-26 14:07:40 +02:00
|
|
|
|
|
|
|
<div class="additional-info text-muted">
|
|
|
|
<div id="wall-item-ago-{{$item.id}}" class="wall-item-ago">
|
2016-05-28 13:08:43 +02:00
|
|
|
<small><a href="{{$item.plink.orig}}"><span class="time" title="{{$item.localtime}}" data-toggle="tooltip">{{$item.ago}}</span></a></small>
|
2016-04-26 14:07:40 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{{if $item.location}}
|
|
|
|
<div id="wall-item-location-{{$item.id}}" class="wall-item-location">
|
|
|
|
<small><span class="location">({{$item.location}})</span></small>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
2016-03-28 16:29:05 +02:00
|
|
|
{{* @todo $item.created have to be inserted *}}
|
2016-04-26 14:07:40 +02:00
|
|
|
</h4>
|
2016-03-28 16:29:05 +02:00
|
|
|
</div>
|
|
|
|
|
2016-04-26 14:07:40 +02:00
|
|
|
{{* contact info header for smartphones *}}
|
|
|
|
<div role="heading " class="contact-info-xs hidden-lg hidden-md">
|
|
|
|
<h5 class="media-heading">
|
2016-05-06 22:28:12 +02:00
|
|
|
<a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link userinfo"><span>{{$item.name}}</span></a>
|
2016-04-26 14:07:40 +02:00
|
|
|
<p class="text-muted"><small>
|
|
|
|
<span class="wall-item-ago">{{$item.ago}}</span> {{if $item.location}} — ({{$item.location}}){{/if}}</small>
|
|
|
|
</p>
|
|
|
|
</h5>
|
2016-03-28 16:29:05 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
|
|
|
|
<hr />
|
|
|
|
|
|
|
|
|
|
|
|
{{* item content *}}
|
|
|
|
<div itemprop="description" class="wall-item-content {{$item.type}}" id="wall-item-content-{{$item.id}}">
|
|
|
|
{{* insert some space if it's an top-level post *}}
|
|
|
|
{{if $item.thread_level==1}}
|
|
|
|
<div style="height:10px;"> </div> <!-- use padding/margin instead-->
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{if $item.title}}
|
2016-04-14 03:42:36 +02:00
|
|
|
<span class="wall-item-title" id="wall-item-title-{{$item.id}}"><h4 class="media-heading"><a href="{{$item.plink.href}}" class="{{$item.sparkle}}">{{$item.title}}</a></h4><br /></span>
|
2016-03-28 16:29:05 +02:00
|
|
|
{{/if}}
|
|
|
|
|
2016-04-14 03:42:36 +02:00
|
|
|
<div class="wall-item-body" id="wall-item-body-{{$item.id}}">{{$item.body}}</div>
|
2016-03-28 16:29:05 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- TODO -->
|
|
|
|
<div class="wall-item-bottom">
|
|
|
|
<div class="wall-item-links">
|
|
|
|
</div>
|
|
|
|
<div class="wall-item-tags">
|
|
|
|
{{foreach $item.hashtags as $tag}}
|
2017-03-03 07:19:49 +01:00
|
|
|
<span class="tag label btn-info sm">{{$tag}} <i class="fa fa-bolt"></i></span>
|
2016-03-28 16:29:05 +02:00
|
|
|
{{/foreach}}
|
|
|
|
|
|
|
|
{{foreach $item.mentions as $tag}}
|
2017-03-03 07:19:49 +01:00
|
|
|
<span class="mention label btn-warning sm">{{$tag}} <i class="fa fa-user"></i></span>
|
2016-03-28 16:29:05 +02:00
|
|
|
{{/foreach}}
|
|
|
|
|
|
|
|
{{foreach $item.folders as $cat}}
|
2017-03-03 07:19:49 +01:00
|
|
|
<span class="folder label btn-danger sm">{{$cat.name}}</a>{{if $cat.removeurl}} (<a href="{{$cat.removeurl}}" title="{{$remove}}">x</a>) {{/if}} </span>
|
2016-03-28 16:29:05 +02:00
|
|
|
{{/foreach}}
|
|
|
|
|
|
|
|
{{foreach $item.categories as $cat}}
|
2017-03-03 07:19:49 +01:00
|
|
|
<span class="category label btn-success sm">{{$cat.name}}</a>{{if $cat.removeurl}} (<a href="{{$cat.removeurl}}" title="{{$remove}}">x</a>) {{/if}} </span>
|
2016-03-28 16:29:05 +02:00
|
|
|
{{/foreach}}
|
|
|
|
</div>
|
|
|
|
{{if $item.edited}}<div class="itemedited text-muted">{{$item.edited['label']}} (<span title="{{$item.edited['date']}}">{{$item.edited['relative']}}</span>)</div>{{/if}}
|
|
|
|
</div>
|
|
|
|
<!-- ./TODO -->
|
|
|
|
|
|
|
|
<div class="wall-item-actions">
|
|
|
|
{{* Action buttons to interact with the item (like: like, dislike, share and so on *}}
|
|
|
|
<div class="wall-item-actions-left pull-left">
|
|
|
|
<!--comment this out to try something different {{if $item.threaded}}{{if $item.comment}}
|
|
|
|
<div id="button-reply" class="pull-left">
|
|
|
|
<span 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>
|
|
|
|
</div>
|
|
|
|
{{/if}}{{/if}}-->
|
|
|
|
|
|
|
|
{{if $item.threaded}}{{/if}}
|
|
|
|
|
|
|
|
{{* Buttons for like and dislike *}}
|
|
|
|
{{if $item.vote}}
|
2016-05-30 05:21:57 +02:00
|
|
|
{{if $item.vote.like}}
|
2017-03-03 07:19:49 +01:00
|
|
|
<button type="button" class="btn btn-defaultbutton-likes{{if $item.responses.like.self}} active" aria-pressed="true{{/if}}" id="like-{{$item.id}}" title="{{$item.vote.like.0}}" onclick="dolike({{$item.id}}, 'like'); return false;">{{$item.vote.like.0}}</button>
|
2016-05-30 05:21:57 +02:00
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{if $item.vote.dislike}}
|
2017-03-03 07:19:49 +01:00
|
|
|
<button type="button" class="btn btn-defaultbutton-likes{{if $item.responses.like.self}} active" aria-pressed="true{{/if}}" id="dislike-{{$item.id}}" title="{{$item.vote.dislike.0}}" onclick="dolike({{$item.id}}, 'dislike'); return false;">{{$item.vote.dislike.0}}</button>
|
2016-05-30 05:21:57 +02:00
|
|
|
{{/if}}
|
2016-03-28 16:29:05 +02:00
|
|
|
{{/if}}
|
|
|
|
|
2017-03-03 07:19:49 +01:00
|
|
|
{{* Button to open the comment text field *}}
|
2016-03-28 16:29:05 +02:00
|
|
|
{{if $item.comment}}
|
2017-03-03 07:19:49 +01:00
|
|
|
<button type="button" class="btn btn-default" id="comment-{{$item.id}}" title="{{$item.switchcomment}}" onclick="openClose('item-comments-{{$item.id}}'); commentExpand({{$item.id}});">{{$item.switchcomment}}</button>
|
2016-03-28 16:29:05 +02:00
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{* Button for sharing the item *}}
|
|
|
|
{{if $item.vote}}
|
2016-05-30 05:21:57 +02:00
|
|
|
{{if $item.vote.share}}
|
2017-03-03 07:19:49 +01:00
|
|
|
<button type="button" class="btn btn-default" id="share-{{$item.id}}" title="{{$item.vote.share.0}}" onclick="jotShare({{$item.id}}); return false;"><i class="fa fa-retweet"></i> {{$item.vote.share.0}}</button>
|
2016-03-28 16:29:05 +02:00
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="wall-item-actions-right pull-right">
|
|
|
|
{{* Event attendance buttons *}}
|
|
|
|
{{if $item.isevent}}
|
|
|
|
<div class="vote-event">
|
2017-03-03 07:19:49 +01:00
|
|
|
<button type="button" class="btn btn-defaultbutton-event{{if $item.responses.attendyes.self}} active" aria-pressed="true{{/if}}" id="attendyes-{{$item.id}}" title="{{$item.attend.0}}" onclick="dolike({{$item.id}}, 'attendyes'); return false;"><i class="fa fa-check"><span class="sr-only">{{$item.attend.0}}</span></i></button>
|
|
|
|
<button type="button" class="btn btn-defaultbutton-event{{if $item.responses.attendno.self}} active" aria-pressed="true{{/if}}" id="attendno-{{$item.id}}" title="{{$item.attend.1}}" onclick="dolike({{$item.id}}, 'attendno'); return false;"><i class="fa fa-times"><span class="sr-only">{{$item.attend.1}}</span></i></button>
|
|
|
|
<button type="button" class="btn btn-defaultbutton-event{{if $item.responses.attendmaybe.self}} active" aria-pressed="true{{/if}}" id="attendmaybe-{{$item.id}}" title="{{$item.attend.2}}" onclick="dolike({{$item.id}}, 'attendmaybe'); return false;"><i class="fa fa-question"><span class="sr-only">{{$item.attend.2}}</span></i></button>
|
2016-03-28 16:29:05 +02:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
<div class="pull-right checkbox">
|
|
|
|
{{if $item.drop.pagedrop}}
|
|
|
|
<input type="checkbox" title="{{$item.drop.select}}" name="itemselected[]" id="checkbox-{{$item.id}}" class="item-select" value="{{$item.id}}" />
|
|
|
|
<label for="checkbox-{{$item.id}}"></label>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
</div><!--./wall-item-actions-->
|
|
|
|
|
|
|
|
{{* Display likes, dislike and attendance stats *}}
|
|
|
|
{{if $item.responses}}
|
2017-03-03 07:19:49 +01:00
|
|
|
<div class="wall-item-responses">
|
|
|
|
{{foreach $item.responses as $verb=>$response}}
|
|
|
|
<div class="wall-item-{{$verb}}" id="wall-item-{{$verb}}-{{$item.id}}">{{$response.output}}</div>
|
|
|
|
{{/foreach}}
|
|
|
|
</div>
|
2016-03-28 16:29:05 +02:00
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
<div class="wall-item-conv" id="wall-item-conv-{{$item.id}}" >
|
|
|
|
{{if $item.conv}}
|
2017-03-03 07:19:49 +01:00
|
|
|
<a href="{{$item.conv.href}}" id="context-{{$item.id}}" title="{{$item.conv.title}}">{{$item.conv.title}}</a>
|
2016-03-28 16:29:05 +02:00
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
</div><!--./media>-->
|
|
|
|
</div><!-- ./panel-body -->
|
|
|
|
</div><!--./panel-->
|