2016-06-12 12:23:10 -04:00
|
|
|
|
|
|
|
{{foreach $events as $event}}
|
|
|
|
<div class="event-wrapper">
|
|
|
|
<div class="event">
|
2016-06-17 08:09:18 -04:00
|
|
|
<div class="media">
|
2016-10-22 09:44:06 -04:00
|
|
|
<div class="event-owner media-left">
|
2016-06-17 08:09:18 -04:00
|
|
|
{{if $event.item.author_name}}
|
|
|
|
<a href="{{$event.item.author_link}}" ><img src="{{$event.item.author_avatar}}" /></a>
|
2018-12-13 22:28:12 -05:00
|
|
|
<a href="{{$event.item.author_link}}" >{{$event.item.author_name}}</a>
|
2016-06-17 08:09:18 -04:00
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
<div class="media-body">
|
2018-12-14 01:24:26 -05:00
|
|
|
{{$event.html nofilter}}
|
2016-06-17 08:09:18 -04:00
|
|
|
</div>
|
2016-06-12 12:23:10 -04:00
|
|
|
</div>
|
|
|
|
|
2017-03-26 19:22:19 -04:00
|
|
|
<div class="event-buttons pull-right">
|
2018-12-13 22:28:12 -05:00
|
|
|
{{if $event.edit}}<button type="button" class="btn" onclick="eventEdit('{{$event.edit.0}}')" title="{{$event.edit.1}}"><i class="fa fa-pencil" aria-hidden="true"></i></button>{{/if}}
|
|
|
|
{{if $event.copy}}<button type="button" class="btn" onclick="eventEdit('{{$event.copy.0}}')" title="{{$event.copy.1}}"><i class="fa fa-files-o" aria-hidden="true"></i></button>{{/if}}
|
|
|
|
{{if $event.drop}}<a href="{{$event.drop.0}}" onclick="return confirmDelete();" title="{{$event.drop.1}}" class="drop-event-link btn"><i class="fa fa-trash-o" aria-hidden="true"></i></a>{{/if}}
|
2019-09-06 08:34:22 -04:00
|
|
|
{{if $event.item.plink}}<a href="{{$event.plink.0}}" title="{{$event.plink.1}}" class="plink-event-link btn" aria-label="{{$event.plink.1}}"><i class="fa fa-external-link" aria-hidden="true"></i></a>{{/if}}
|
2016-06-12 12:23:10 -04:00
|
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/foreach}}
|