X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fresources%2Ftemplates%2FimageBrowser.html;h=c705a2ceac437a3927c54b458b1391992f6b11f2;hb=e5e67f4536966700d9a5e3120ca70fd3d4a4867d;hp=30c61e4aac43ddfa08e78c8a5829cfb7489bea28;hpb=7034cd9a2616e1c377d4db35371a8056bd29e120;p=Sone.git diff --git a/src/main/resources/templates/imageBrowser.html b/src/main/resources/templates/imageBrowser.html index 30c61e4..c705a2c 100644 --- a/src/main/resources/templates/imageBrowser.html +++ b/src/main/resources/templates/imageBrowser.html @@ -1,5 +1,471 @@ <%include include/head.html> -

<%= Page.ImageBrowser.Page.Title|l10n|html>

+ + + + + <%if albumRequested> + + <%ifnull album> + +

<%= Page.ImageBrowser.Album.Error.NotFound.Text|l10n|html>

+ + <%elseifnull album.title> + +

<%= Page.ImageBrowser.Album.Error.NotFound.Text|l10n|html>

+ + <%else> + + <%if album.sone.local> + + <%/if> + +

<%= Page.ImageBrowser.Album.Title|l10n|replace needle=='{album}' replacement=album.title|html>

+ + + +

<% album.description|parse sone=album.sone|render>

+ + <%if album.sone.local> + + +
+

<%= Page.ImageBrowser.Album.Edit.Title|l10n|html>

+ +
+ + + + <%if ! album.images.empty> +
+ + +
+ <%/if> +
+ + +
+
+ + +
+ +
+
+ <%/if> + + <%include include/browseAlbums.html albums=album.albums> + + <%if album.sone.local> + + +
+ <%include include/createAlbum.html> +
+ <%/if> + + <%foreach album.images image|paginate pageSize=core.preferences.imagesPerPage page=page> + <%first> +

<%= Page.ImageBrowser.Header.Images|l10n|html>

+ <%include include/pagination.html pageParameter=="page"> +
+ <%/first> + <%if loop.even>
<%/if> +
+ + <%include include/viewImage.html> +
+ <%= false|store key==endRow> + <%if loop.odd><%= true|store key==endRow><%/if> + <%last><%= true|store key==endRow><%/last> + <%if endRow> +
+ <%/if> + <%last>
<%include include/pagination.html pageParameter=="page"><%/last> + <%/foreach> + + <%if album.sone.local> + + +
+ <%include include/uploadImage.html> +
+ + <%if album.empty> + + +
+
+ + +
+
+ <%/if> + + <%/if> + + <%/if> + + <%elseif imageRequested> + +

<%image.title|html>

+ + + + <%ifnull image> + + <%else> + + <%if image.sone.local> + + <%/if> + +
+ <%ifnull !image.key> + <% image|image-link max-width==640 max-height==480> + <%else> + <% image|image-link max-width==640 max-height==480> + <%/if> +
+ +

<%image.description|parse sone=image.sone|render>

+ + <%if image.sone.local> + + + +
+

<%= Page.ImageBrowser.Image.Edit.Title|l10n|html>

+ +
+ + + + +
+ + +
+
+ + +
+
+ +
+
+
+ + + +
+

<%= Page.ImageBrowser.Image.Delete.Title|l10n|html>

+ +
+ + +
+
+ + <%/if> + + <%/if> + + <%elseif soneRequested> + + <%if sone.local> + + <%/if> + + <%ifnull sone> + +

<%= Page.ImageBrowser.Sone.Error.NotFound.Text|l10n|html>

+ + <%else> + +

<%= Page.ImageBrowser.Sone.Title|l10n|replace needle=='{sone}' replacement=sone.niceName|html>

+ + + + <%include include/browseAlbums.html albums=sone.rootAlbum.albums> + + <%if sone.local> + + +
+ <%include include/createAlbum.html> +
+ <%/if> + + <%/if> + + <%elseif galleryRequested> + + <%foreach albums album|paginate pageSize=core.preferences.imagesPerPage pageParameter=request.page pagination=albumPagination> + <%first> +

<%= Page.ImageBrowser.Header.Albums|l10n|html>

+ <%include include/pagination.html pagination=albumPagination pageParameter=="page"> +
+ <%/first> + <%if loop.even>
<%/if> +
+ + <%include include/viewAlbum.html> +
+ <%= false|store key==endRow> + <%if loop.odd><%= true|store key==endRow><%/if> + <%last><%= true|store key==endRow><%/last> + <%if endRow>
<%/if> + <%last> +
+ <%include include/pagination.html pagination=albumPagination pageParameter=="page"> + <%/last> + <%/foreach> + + <%/if> <%include include/tail.html>