2014-09-06 00:14:25 +02:00
|
|
|
|
2013-04-23 13:47:57 +02:00
|
|
|
{{foreach $events as $event}}
|
|
|
|
<div class="event">
|
|
|
|
|
2021-05-19 23:47:15 +02:00
|
|
|
{{if $event.item.author_name}}<a href="{{$event.item.author_link}}"><img src="{{$event.item.author_avatar}}" height="32" width="32" />{{$event.item.author_name}}</a>{{/if}}
|
2018-12-14 07:24:26 +01:00
|
|
|
{{$event.html nofilter}}
|
2020-07-08 22:47:05 +02:00
|
|
|
{{if $event.plink.orig}}<a href="{{$event.plink.orig}}" title="{{$event.plink.orig_title}}" target="_blank" rel="noopener noreferrer" class="plink-event-link icon s22 remote-link"></a>{{/if}}
|
2013-04-23 13:47:57 +02:00
|
|
|
{{if $event.edit}}<a href="{{$event.edit.0}}" title="{{$event.edit.1}}" class="edit-event-link icon s22 pencil"></a>{{/if}}
|
2017-10-15 22:52:22 +02:00
|
|
|
{{if $event.copy}}<a href="{{$event.copy.0}}" title="{{$event.copy.1}}" class="copy-event-link icon s22 copy"></a>{{/if}}
|
2017-03-16 20:15:25 +01:00
|
|
|
{{if $event.drop}}<a href="{{$event.drop.0}}" onclick="return confirmDelete();" title="{{$event.drop.1}}" class="drop-event-link icon s22 delete"></a>{{/if}}
|
2013-04-23 13:47:57 +02:00
|
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
|
|
|
{{/foreach}}
|