2018-07-26 17:42:26 +02:00
|
|
|
<div class="generic-page-wrapper">
|
|
|
|
<div class="pull-left">
|
2018-08-11 13:41:55 +02:00
|
|
|
<h3 id="photo-album-title">{{$album}}</h3>
|
2018-07-26 17:42:26 +02:00
|
|
|
</div>
|
2018-08-11 13:41:55 +02:00
|
|
|
|
2018-07-26 17:42:26 +02:00
|
|
|
<div class="photo-album-actions pull-right">
|
|
|
|
{{if $can_post}}
|
2018-08-11 13:41:55 +02:00
|
|
|
<a class="photos-upload-link page-action faded-icon" href="{{$upload.1}}" title="{{$upload.0}}" data-toggle="tooltip">
|
|
|
|
<i class="fa fa-plus"></i>
|
|
|
|
</a>
|
2018-07-26 17:42:26 +02:00
|
|
|
{{/if}}
|
2018-08-11 13:41:55 +02:00
|
|
|
|
2018-07-26 17:42:26 +02:00
|
|
|
{{if $edit}}
|
|
|
|
<span class="icon-padding"> </span>
|
2018-09-05 18:24:04 +02:00
|
|
|
<button id="album-edit-link" class="btn-link page-action faded-icon" type="button" data-modal-url="{{$edit.1}}" title="{{$edit.0}}" data-toggle="tooltip">
|
2018-08-11 13:41:55 +02:00
|
|
|
<i class="fa fa-pencil"></i>
|
2018-09-05 18:24:04 +02:00
|
|
|
</button>
|
2018-07-26 17:42:26 +02:00
|
|
|
{{/if}}
|
2019-05-02 01:36:14 +02:00
|
|
|
{{if $drop}}
|
|
|
|
<span class="icon-padding"> </span>
|
|
|
|
<button id="album-drop-link" class="btn-link page-action faded-icon" type="button" data-modal-url="{{$drop.1}}" title="{{$drop.0}}" data-toggle="tooltip">
|
|
|
|
<i class="fa fa-trash"></i>
|
|
|
|
</button>
|
|
|
|
{{/if}}
|
2018-08-11 13:41:55 +02:00
|
|
|
|
2018-07-26 17:42:26 +02:00
|
|
|
{{if ! $noorder}}
|
|
|
|
<span class="icon-padding"> </span>
|
2018-08-11 13:41:55 +02:00
|
|
|
<a class="photos-order-link page-action faded-icon" href="{{$order.1}}" title="{{$order.0}}" data-toggle="tooltip">
|
|
|
|
{{if $order.2 == "newest"}}
|
|
|
|
<i class="fa fa-sort-numeric-desc"></i>
|
|
|
|
{{else}}
|
|
|
|
<i class="fa fa-sort-numeric-asc"></i>
|
|
|
|
{{/if}}
|
2018-07-26 17:42:26 +02:00
|
|
|
</a>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
2018-08-11 13:41:55 +02:00
|
|
|
|
2018-07-26 17:42:26 +02:00
|
|
|
<div class="photo-album-wrapper" id="photo-album-contents">
|
2018-08-11 13:41:55 +02:00
|
|
|
{{foreach $photos as $photo}}
|
|
|
|
{{include file="photo_top.tpl"}}
|
|
|
|
{{/foreach}}
|
2018-07-26 17:42:26 +02:00
|
|
|
</div>
|
|
|
|
<div class="photo-album-end"></div>
|
2018-08-11 13:41:55 +02:00
|
|
|
|
2018-12-14 04:35:51 +01:00
|
|
|
{{$paginate nofilter}}
|
2018-07-25 22:21:43 +02:00
|
|
|
</div>
|
2018-08-11 13:41:55 +02:00
|
|
|
|
|
|
|
<script type="text/javascript">$(document).ready(function() { loadingPage = false; justifyPhotos(); });</script>
|