3a720b6095ba39c3c4965c448fd3ff21868aec8c
[Sone.git] / src / main / resources / templates / imageBrowser.html
1 <%include include/head.html>
2
3         <div class="page-id hidden">image-browser</div>
4
5         <script language="javascript">
6
7                 /* hide all those forms. */
8                 function hideAndShowBlock(blockElement, clickToShowElement, clickToHideElement) {
9                         $(blockElement).hide();
10                         $(clickToShowElement).removeClass("hidden");
11                         $(clickToShowElement).click(function() {
12                                 $(blockElement).slideDown();
13                                 $(clickToShowElement).addClass("hidden");
14                                 $(clickToHideElement).removeClass("hidden");
15                         });
16                         $(clickToHideElement).click(function() {
17                                 $(blockElement).slideUp();
18                                 $(clickToHideElement).addClass("hidden");
19                                 $(clickToShowElement).removeClass("hidden");
20                         });
21                 }
22
23                 /* ID of the image currently being edited. */
24                 var editingImageId = null;
25
26                 /**
27                  * Shows the form for editing an image.
28                  *
29                  * @param imageId The ID of the image to edit.
30                  */
31                 function editImage(imageId) {
32                         if (editingImageId != imageId) {
33                                 cancelImageEditing();
34                         } else {
35                                 return;
36                         }
37                         editingImageId = imageId;
38                         $(".show-data", getImage(imageId)).hide();
39                         $(".edit-data", getImage(imageId)).show();
40                         $(document).bind("click.sone", function(event) {
41                                 if ($(event.target).closest("#image-" + imageId).size() == 0) {
42                                         cancelImageEditing();
43                                 }
44                         });
45                 }
46
47                 /**
48                  * Cancels all image editing.
49                  */
50                 function cancelImageEditing() {
51                         $(".image .show-data").show();
52                         $(".image .edit-data").hide();
53                         $("form.edit-image").each(function() {
54                                 this.reset();
55                         });
56                         $(document).unbind("click.sone");
57                         editingImageId = null;
58                 }
59
60                 /**
61                  * Returns the image element with the given ID.
62                  *
63                  * @param imageId The ID of the image
64                  * @return The image element
65                  */
66                 function getImage(imageId) {
67                         return $("#sone .image .image-id:contains('" + imageId + "')").closest(".image");
68                 }
69
70                 /**
71                  * Swaps two images.
72                  *
73                  * @param sourceId The ID of the source image
74                  * @param destinationId The ID of the destionation image
75                  */
76                 function swapImage(sourceId, destinationId) {
77                         sourceElement = getImage(sourceId);
78                         destinationElement = getImage(destinationId);
79                         sourceParent = sourceElement.closest(".image-row");
80                         sourcePrevSibling = sourceElement.prev();
81                         sourceElement.detach();
82                         destinationElement.before(sourceElement);
83                         if (sourcePrevSibling.get(0) != destinationElement.get(0)) {
84                                 destinationElement.detach();
85                                 (sourcePrevSibling.size() > 0) ? sourcePrevSibling.after(destinationElement) : sourceParent.prepend(destinationElement);
86                         }
87                         if ($("button[name='moveLeft']", sourceElement).hasClass("hidden") != $("button[name='moveLeft']", destinationElement).hasClass("hidden")) {
88                                 $("button[name='moveLeft']", sourceElement).toggleClass("hidden");
89                                 $("button[name='moveLeft']", destinationElement).toggleClass("hidden");
90                         }
91                         if ($("button[name='moveRight']", sourceElement).hasClass("hidden") != $("button[name='moveRight']", destinationElement).hasClass("hidden")) {
92                                 $("button[name='moveRight']", sourceElement).toggleClass("hidden");
93                                 $("button[name='moveRight']", destinationElement).toggleClass("hidden");
94                         }
95                 }
96
97                 /**
98                  * Prepare all images for inline editing.
99                  */
100                 function prepareImages() {
101                         $(".image").each(function() {
102                                 imageId = $(this).closest(".image").find(".image-id").text();
103                                 (function(element, imageId) {
104                                         $(".show-data", element).click(function() {
105                                                 editImage(imageId);
106                                         });
107                                         $("button[name='moveLeft'], button[name='moveRight']", element).click(function() {
108                                                 ajaxGet("editImage.ajax", { "formPassword": getFormPassword(), "image": imageId, "moveLeft": this.name == "moveLeft", "moveRight": this.name == "moveRight" }, function(data) {
109                                                         if (data && data.success) {
110                                                                 swapImage(data.sourceImageId, data.destinationImageId);
111                                                         }
112                                                 });
113                                                 return false;
114                                         });
115                                         $("button[name='submit']", element).click(function() {
116                                                 title = $(":input[name='title']:enabled", this.form).val();
117                                                 description = $(":input[name='description']:enabled", this.form).val();
118                                                 ajaxGet("editImage.ajax", { "formPassword": getFormPassword(), "image": imageId, "title": title, "description": description }, function(data) {
119                             var imageElement = getImage(data.imageId);
120                             var imageTitleInput = imageElement.find(":input[name='title']");
121                             var imageDescriptionInput = imageElement.find(":input[name='description']");
122                             if (data && data.success) {
123                                                                 imageElement.find(".image-title").text(data.title);
124                                                                 imageElement.find(".image-description").html(data.parsedDescription);
125                                                                 imageTitleInput.attr("defaultValue", data.title);
126                                                                 imageDescriptionInput.attr("defaultValue", data.description);
127                                                                 cancelImageEditing();
128                                                         } else if (data && !data.success) {
129                                                                 imageTitleInput.attr("value", imageTitleInput.attr("defaultValue"));
130                                 imageDescriptionInput.attr("value", imageDescriptionInput.attr("defaultValue"));
131                                 cancelImageEditing();
132                             }
133                                                 });
134                                                 return false;
135                                         });
136                                 })(this, imageId);
137                         });
138                 }
139
140                 /* ID of the album currently being edited. */
141                 var editingAlbumId = null;
142
143                 /**
144                  * Shows the form for editing an album.
145                  *
146                  * @param albumId The ID of the album to edit.
147                  */
148                 function editAlbum(albumId) {
149                         if (editingAlbumId != albumId) {
150                                 if (editingAlbumId != null) {
151                                         cancelAlbumEditing();
152                                 }
153                         } else {
154                                 console.log("already editing " + albumId);
155                                 return;
156                         }
157                         editingAlbumId = albumId;
158                         $(".show-data", getAlbum(albumId)).hide();
159                         $(".edit-data", getAlbum(albumId)).show();
160                         console.log(getAlbum(albumId));
161                         $(document).bind("click.sone", function(event) {
162                                 if ($(event.target).closest("#album-" + albumId).size() == 0) {
163                                         cancelAlbumEditing();
164                                 }
165                         });
166                 }
167
168                 /**
169                  * Cancels all album editing.
170                  */
171                 function cancelAlbumEditing() {
172                         console.log("cancel-album-edit");
173                         $(".album .show-data").show();
174                         $(".album .edit-data").hide();
175                         $("form.edit-album").each(function() {
176                                 this.reset();
177                         });
178                         $(document).unbind("click.sone");
179                         editingAlbumId = null;
180                 }
181
182                 /**
183                  * Returns the album element with the given ID.
184                  *
185                  * @param albumId The ID of the album
186                  * @return The album element
187                  */
188                 function getAlbum(albumId) {
189                         return $("#sone .album .album-id:contains('" + albumId + "')").closest(".album");
190                 }
191
192                 /**
193                  * Swaps two albums.
194                  *
195                  * @param sourceId The ID of the source album
196                  * @param destinationId The ID of the destionation album
197                  */
198                 function swapAlbum(sourceId, destinationId) {
199                         sourceElement = getAlbum(sourceId);
200                         destinationElement = getAlbum(destinationId);
201                         sourceParent = sourceElement.closest(".album-row");
202                         sourcePrevSibling = sourceElement.prev();
203                         sourceElement.detach();
204                         destinationElement.before(sourceElement);
205                         if (sourcePrevSibling.get(0) != destinationElement.get(0)) {
206                                 destinationElement.detach();
207                                 (sourcePrevSibling.size() > 0) ? sourcePrevSibling.after(destinationElement) : sourceParent.prepend(destinationElement);
208                         }
209                         if ($("button[name='moveLeft']", sourceElement).hasClass("hidden") != $("button[name='moveLeft']", destinationElement).hasClass("hidden")) {
210                                 $("button[name='moveLeft']", sourceElement).toggleClass("hidden");
211                                 $("button[name='moveLeft']", destinationElement).toggleClass("hidden");
212                         }
213                         if ($("button[name='moveRight']", sourceElement).hasClass("hidden") != $("button[name='moveRight']", destinationElement).hasClass("hidden")) {
214                                 $("button[name='moveRight']", sourceElement).toggleClass("hidden");
215                                 $("button[name='moveRight']", destinationElement).toggleClass("hidden");
216                         }
217                 }
218
219                 /**
220                  * Prepare all albums for inline editing.
221                  */
222                 function prepareAlbums() {
223                         $(".album").each(function() {
224                                 albumId = $(this).closest(".album").find(".album-id").text();
225                                 (function(element, albumId) {
226                                         $(".show-data", element).click(function() {
227                                                 console.log("show-data");
228                                                 editAlbum(albumId);
229                                         });
230                                         $("button[name='moveLeft'], button[name='moveRight']", element).click(function() {
231                                                 ajaxGet("editAlbum.ajax", { "formPassword": getFormPassword(), "album": albumId, "moveLeft": this.name == "moveLeft", "moveRight": this.name == "moveRight" }, function(data) {
232                                                         if (data && data.success) {
233                                                                 swapAlbum(data.sourceAlbumId, data.destinationAlbumId);
234                                                         }
235                                                 });
236                                                 return false;
237                                         });
238                                         $("button[name='submit']", element).click(function() {
239                                                 title = $(":input[name='title']:enabled", this.form).val();
240                                                 description = $(":input[name='description']:enabled", this.form).val();
241                                                 ajaxGet("editAlbum.ajax", { "formPassword": getFormPassword(), "album": albumId, "title": title, "description": description }, function(data) {
242                                                         if (data) {
243                                 var albumTitleField = getAlbum(data.albumId).find(".album-title");
244                                 var albumDescriptionField = getAlbum(data.albumId).find(".album-description");
245                                 if (data.success) {
246                                     albumTitleField.text(data.title);
247                                     albumDescriptionField.html(data.description);
248                                     getAlbum(data.albumId).find(":input[name='title']").attr("defaultValue", title);
249                                     getAlbum(data.albumId).find(":input[name='description']").attr("defaultValue", description);
250                                 } else {
251                                     albumTitleField.attr("value", albumTitleField.attr("defaultValue"));
252                                     albumDescriptionField.attr("value", albumDescriptionField.attr("defaultValue"));
253                                 }
254                                 cancelAlbumEditing();
255                             }
256                                                 });
257                                                 return false;
258                                         });
259                                 })(this, albumId);
260                         });
261                 }
262
263         </script>
264
265         <%if albumRequested>
266
267                 <%ifnull album>
268
269                         <p><%= Page.ImageBrowser.Album.Error.NotFound.Text|l10n|html></p>
270
271                 <%elseifnull album.title>
272
273                         <p><%= Page.ImageBrowser.Album.Error.NotFound.Text|l10n|html></p>
274
275                 <%else>
276
277                         <%if album.sone.local>
278                                 <script language="javascript">
279
280                                         $(function() {
281                                                 getTranslation("WebInterface.DefaultText.UploadImage.Title", function(text) {
282                                                         $("#upload-image :input[name='title']").each(function() {
283                                                                 registerInputTextareaSwap(this, text, "title", false, true);
284                                                         });
285                                                 });
286                                                 getTranslation("WebInterface.DefaultText.UploadImage.Description", function(text) {
287                                                         $("#upload-image :input[name='description']").each(function() {
288                                                                 registerInputTextareaSwap(this, text, "description", true, false);
289                                                         });
290                                                 });
291                                                 $("#upload-image label").hide();
292                                                 getTranslation("WebInterface.DefaultText.CreateAlbum.Name", function(text) {
293                                                         $("#create-album input[name='name']").each(function() {
294                                                                 registerInputTextareaSwap(this, text, "name", false, true);
295                                                         });
296                                                 });
297                                                 getTranslation("WebInterface.DefaultText.CreateAlbum.Description", function(text) {
298                                                         $("#create-album input[name='description']").each(function() {
299                                                                 registerInputTextareaSwap(this, text, "description", true, true);
300                                                         });
301                                                 });
302                                                 $("#create-album label").hide();
303                                                 getTranslation("WebInterface.DefaultText.EditAlbum.Title", function(text) {
304                                                         $("#edit-album input[name='title']").each(function() {
305                                                                 registerInputTextareaSwap(this, text, "title", false, true);
306                                                         });
307                                                 });
308                                                 getTranslation("WebInterface.DefaultText.EditAlbum.Description", function(text) {
309                                                         $("#edit-album :input[name='description']").each(function() {
310                                                                 registerInputTextareaSwap(this, text, "description", true, false);
311                                                         });
312                                                 });
313                                                 $("#edit-album label").hide();
314
315                                                 /* hide non-js image move buttons. */
316                                                 $(".move-buttons").hide();
317
318                                                 hideAndShowBlock("div.edit-album", ".show-edit-album", ".hide-edit-album");
319                                                 hideAndShowBlock("div.create-album", ".show-create-album", ".hide-create-album");
320                                                 hideAndShowBlock("div.upload-image", ".show-upload-image", ".hide-upload-image");
321                                                 hideAndShowBlock("div.delete-album", ".show-delete-album", ".hide-delete-album");
322
323                                                 prepareAlbums();
324                                                 prepareImages();
325                                         });
326                                 </script>
327                         <%/if>
328
329                         <h1 class="backlink"><%= Page.ImageBrowser.Album.Title|l10n|replace needle=='{album}' replacement=album.title|html></h1>
330
331                         <div class="backlinks">
332                                 <div class="backlink"><a href="imageBrowser.html?mode=gallery"><%= Page.ImageBrowser.Link.All|l10n|html></a></div>
333                                 <div class="separator">&gt;</div>
334                                 <%foreach album.backlinks backlink backlinks>
335                                         <div class="backlink">
336                                                 <a href="<% backlink.target|html>"><% backlink.name|html></a>
337                                         </div>
338                                         <%if ! backlinks.last>
339                                                 <div class="separator">&gt;</div>
340                                         <%/if>
341                                 <%/foreach>
342                         </div>
343
344                         <p id="description"><% album.description|parse sone=album.sone|render></p>
345
346                         <%if album.sone.local>
347                                 <div class="show-edit-album hidden toggle-link"><a class="small-link">» <%= Page.ImageBrowser.Album.Edit.Title|l10n|html></a></div>
348                                 <div class="hide-edit-album hidden toggle-link"><a class="small-link">« <%= Page.ImageBrowser.Album.Edit.Title|l10n|html></a></div>
349                                 <div class="edit-album">
350                                         <h2><%= Page.ImageBrowser.Album.Edit.Title|l10n|html></h2>
351
352                                         <form id="edit-album" action="editAlbum.html" method="post">
353                                                 <input type="hidden" name="formPassword" value="<%formPassword|html>" />
354                                                 <input type="hidden" name="album" value="<%album.id|html>" />
355
356                                                 <%if ! album.images.empty>
357                                                         <div>
358                                                                 <label for="album-image"><%= Page.ImageBrowser.Album.Label.AlbumImage|l10n|html></label>
359                                                                 <select name="album-image">
360                                                                         <option disabled="disabled"><%= Page.ImageBrowser.Album.AlbumImage.Choose|l10n|html></option>
361                                                                         <%foreach album.images image>
362                                                                                 <option value="<% image.id|html>"<%if album.albumImage.id|match value=image.id> selected="selected"<%/if>><% image.title|html></option>
363                                                                         <%/foreach>
364                                                                 </select>
365                                                         </div>
366                                                 <%/if>
367                                                 <div>
368                                                         <label for="title"><%= Page.ImageBrowser.Album.Label.Title|l10n|html></label>
369                                                         <input type="text" name="title" value="<%album.title|html>" />
370                                                 </div>
371                                                 <div>
372                                                         <label for="description"><%= Page.ImageBrowser.Album.Label.Description|l10n|html></label>
373                                                         <textarea name="description"><%album.description|html></textarea>
374                                                 </div>
375                                                 <button type="submit"><%= Page.ImageBrowser.Album.Button.Save|l10n|html></button>
376                                         </form>
377                                 </div>
378                         <%/if>
379
380                         <%include include/browseAlbums.html albums=album.albums>
381
382                         <%if album.sone.local>
383                                 <div class="show-create-album hidden toggle-link"><a class="small-link">» <%= View.CreateAlbum.Title|l10n|html></a></div>
384                                 <div class="hide-create-album hidden toggle-link"><a class="small-link">« <%= View.CreateAlbum.Title|l10n|html></a></div>
385                                 <div class="create-album">
386                                         <%include include/createAlbum.html>
387                                 </div>
388                         <%/if>
389
390                         <%foreach album.images image|paginate pageSize=core.preferences.imagesPerPage page=page>
391                                 <%first>
392                                         <h2><%= Page.ImageBrowser.Header.Images|l10n|html></h2>
393                                         <%include include/pagination.html pageParameter=="page">
394                                         <div class="images">
395                                 <%/first>
396                                         <%if loop.even><div class="image-row"><%/if>
397                                                 <div id="image-<% image.id|html>" class="image-in-album">
398                                                         <div class="image-id hidden"><% image.id|html></div>
399                                                         <%include include/viewImage.html>
400                                                         <%if album.sone.local>
401                                                         <form class="edit-image" action="editImage.html" method="post">
402                                                                 <input type="hidden" name="formPassword" value="<%formPassword|html>" />
403                                                                 <input type="hidden" name="returnPage" value="<%request.uri|html>" />
404                                                                 <input type="hidden" name="image" value="<%image.id|html>" />
405
406                                                                 <div class="move-buttons">
407                                                                         <button <%if loop.first>class="hidden" <%/if>type="submit" name="moveLeft" value="true"><%= Page.ImageBrowser.Image.Button.MoveLeft|l10n|html></button>
408                                                                         <button <%if loop.last>class="hidden" <%/if>type="submit" name="moveRight" value="true"><%= Page.ImageBrowser.Image.Button.MoveRight|l10n|html></button>
409                                                                 </div>
410
411                                                                 <div class="edit-data hidden">
412                                                                         <div>
413                                                                                 <input type="text" name="title" value="<%image.title|html>" />
414                                                                         </div>
415                                                                         <div>
416                                                                                 <textarea name="description"><%image.description|html></textarea>
417                                                                         </div>
418                                                                         <div>
419                                                                                 <button <%if loop.first>class="hidden" <%/if>type="submit" name="moveLeft" value="true"><%= Page.ImageBrowser.Image.Button.MoveLeft|l10n|html></button>
420                                                                                 <button type="submit" name="submit"><%= Page.ImageBrowser.Image.Button.Save|l10n|html></button>
421                                                                                 <button <%if loop.last>class="hidden" <%/if>type="submit" name="moveRight" value="true"><%= Page.ImageBrowser.Image.Button.MoveRight|l10n|html></button>
422                                                                         </div>
423                                                                 </div>
424                                                         </form>
425                                                         <%/if>
426                                                 </div>
427                                                 <%= false|store key==endRow>
428                                                 <%if loop.odd><%= true|store key==endRow><%/if>
429                                                 <%last><%= true|store key==endRow><%/last>
430                                                 <%if endRow>
431                                         </div>
432                                 <%/if>
433                 <%last></div><%include include/pagination.html pageParameter=="page"><%/last>
434                         <%/foreach>
435
436                         <%if album.sone.local>
437                                 <div class="clear show-upload-image hidden toggle-link"><a class="small-link">» <%= View.UploadImage.Title|l10n|html></a></div>
438                                 <div class="clear hide-upload-image hidden toggle-link"><a class="small-link">« <%= View.UploadImage.Title|l10n|html></a></div>
439                                 <div class="upload-image">
440                                         <%include include/uploadImage.html>
441                                 </div>
442
443                                 <%if album.empty>
444                                         <div class="show-delete-album hidden toggle-link"><a class="small-link">» <%= Page.ImageBrowser.Album.Delete.Title|l10n|html></a></div>
445                                         <div class="hide-delete-album hidden toggle-link"><a class="small-link">« <%= Page.ImageBrowser.Album.Delete.Title|l10n|html></a></div>
446                                         <div class="delete-album">
447                                                 <form id="delete-album" action="deleteAlbum.html" method="get">
448                                                         <input type="hidden" name="album" value="<%album.id|html>" />
449                                                         <button type="submit"><%= Page.ImageBrowser.Album.Button.Delete|l10n|html></button>
450                                                 </form>
451                                         </div>
452                                 <%/if>
453
454                         <%/if>
455
456                 <%/if>
457
458         <%elseif imageRequested>
459
460                 <h1 class="backlink"><%image.title|html></h1>
461
462                 <div class="backlinks">
463                         <div class="backlink"><a href="imageBrowser.html?mode=gallery"><%= Page.ImageBrowser.Link.All|l10n|html></a></div>
464                         <div class="separator">&gt;</div>
465                         <%foreach image.album.backlinks backlink backlinks>
466                                 <div class="backlink">
467                                         <a href="<% backlink.target|html>"><% backlink.name|html></a>
468                                 </div>
469                                 <%if ! backlinks.last>
470                                         <div class="separator">&gt;</div>
471                                 <%/if>
472                         <%/foreach>
473                         <%ifnull !image.previous><div class="backlink"><a href="imageBrowser.html?image=<%image.previous.id|html>">« <%image.previous.title|html></a></div><%/if>
474                         <%ifnull !image.next><div class="backlink"><a href="imageBrowser.html?image=<%image.next.id|html>">» <%image.next.title|html></a></div><%/if>
475                 </div>
476
477                 <%ifnull image>
478
479                 <%else>
480
481                         <%if image.sone.local>
482                                 <script language="javascript">
483                                         $(function() {
484                                                 getTranslation("WebInterface.DefaultText.EditImage.Title", function(text) {
485                                                         $("#edit-image input[name='title']").each(function() {
486                                                                 registerInputTextareaSwap(this, text, "title", false, true);
487                                                         });
488                                                 });
489                                                 getTranslation("WebInterface.DefaultText.EditImage.Description", function(text) {
490                                                         $("#edit-image :input[name='description']").each(function() {
491                                                                 registerInputTextareaSwap(this, text, "description", true, false);
492                                                         });
493                                                 });
494                                                 $("#edit-image label").hide();
495
496                                                 hideAndShowBlock(".edit-image", ".show-edit-image", ".hide-edit-image");
497                                                 hideAndShowBlock(".delete-image", ".show-delete-image", ".hide-delete-image");
498                                         });
499                                 </script>
500                         <%/if>
501
502                         <div class="single-image">
503                                 <%ifnull !image.key>
504                                         <a href="/<%image.key|html>"><% image|image-link max-width==640 max-height==480></a>
505                                 <%else>
506                                         <a href="imageBrowser.html?image=<%image.id|html>"><% image|image-link max-width==640 max-height==480></a>
507                                 <%/if>
508                         </div>
509
510                         <p class="parsed"><%image.description|parse sone=image.sone|render></p>
511
512                         <%if image.sone.local>
513
514                                 <div class="show-edit-image hidden toggle-link"><a class="small-link">» <%= Page.ImageBrowser.Image.Edit.Title|l10n|html></a></div>
515                                 <div class="hide-edit-image hidden toggle-link"><a class="small-link">« <%= Page.ImageBrowser.Image.Edit.Title|l10n|html></a></div>
516                                 <div class="edit-image">
517                                         <h2><%= Page.ImageBrowser.Image.Edit.Title|l10n|html></h2>
518
519                                         <form id="edit-image" action="editImage.html" method="post">
520                                                 <input type="hidden" name="formPassword" value="<%formPassword|html>" />
521                                                 <input type="hidden" name="returnPage" value="<%request.uri|html>" />
522                                                 <input type="hidden" name="image" value="<%image.id|html>" />
523
524                                                 <div>
525                                                         <label for="title"><%= Page.ImageBrowser.Image.Title.Label|l10n|html></label>
526                                                         <input type="text" name="title" value="<%image.title|html>" />
527                                                 </div>
528                                                 <div>
529                                                         <label for="description"><%= Page.ImageBrowser.Image.Description.Label|l10n|html></label>
530                                                         <textarea name="description"><%image.description|html></textarea>
531                                                 </div>
532                                                 <div>
533                                                         <button type="submit"><%= Page.ImageBrowser.Image.Button.Save|l10n|html></button>
534                                                 </div>
535                                         </form>
536                                 </div>
537
538                                 <div class="show-delete-image hidden toggle-link"><a class="small-link">» <%= Page.ImageBrowser.Image.Delete.Title|l10n|html></a></div>
539                                 <div class="hide-delete-image hidden toggle-link"><a class="small-link">« <%= Page.ImageBrowser.Image.Delete.Title|l10n|html></a></div>
540                                 <div class="delete-image">
541                                         <h2><%= Page.ImageBrowser.Image.Delete.Title|l10n|html></h2>
542
543                                         <form id="delete-image" action="deleteImage.html" method="get">
544                                                 <input type="hidden" name="image" value="<%image.id|html>" />
545                                                 <button type="submit"><%= Page.ImageBrowser.Image.Button.Delete|l10n|html></button>
546                                         </form>
547                                 </div>
548
549                         <%/if>
550
551                 <%/if>
552
553         <%elseif soneRequested>
554
555                 <%if sone.local>
556                         <script language="javascript">
557                                 $(function() {
558                                         getTranslation("WebInterface.DefaultText.CreateAlbum.Name", function(text) {
559                                                 $("#create-album input[name='name']").each(function() {
560                                                         registerInputTextareaSwap(this, text, "name", false, true);
561                                                 });
562                                         });
563                                         getTranslation("WebInterface.DefaultText.CreateAlbum.Description", function(text) {
564                                                 $("#create-album input[name='description']").each(function() {
565                                                         registerInputTextareaSwap(this, text, "description", true, true);
566                                                 });
567                                         });
568                                         $("#create-album label").hide();
569
570                                         /* hide non-js move buttons. */
571                                         $(".move-buttons").hide();
572
573                                         hideAndShowBlock(".create-album", ".show-create-album", ".hide-create-album");
574
575                                         prepareAlbums();
576                                 });
577                         </script>
578                 <%/if>
579
580                 <%ifnull sone>
581
582                         <p><%= Page.ImageBrowser.Sone.Error.NotFound.Text|l10n|html></p>
583
584                 <%else>
585
586                         <h1><%= Page.ImageBrowser.Sone.Title|l10n|replace needle=='{sone}' replacement=sone.niceName|html></h1>
587
588                         <div class="backlinks">
589                                 <div class="backlink"><a href="imageBrowser.html?mode=gallery"><%= Page.ImageBrowser.Link.All|l10n|html></a></div>
590                                 <div class="separator">&gt;</div>
591                                 <div class="backlink"><a href="imageBrowser.html?sone=<%sone.id|html>"><%sone.niceName|html></a></div>
592                         </div>
593
594                         <%include include/browseAlbums.html albums=sone.rootAlbum.albums>
595
596                         <%if sone.local>
597                                 <div class="show-create-album hidden toggle-link"><a class="small-link">» <%= View.CreateAlbum.Title|l10n|html></a></div>
598                                 <div class="hide-create-album hidden toggle-link"><a class="small-link">« <%= View.CreateAlbum.Title|l10n|html></a></div>
599                                 <div class="create-album">
600                                         <%include include/createAlbum.html>
601                                 </div>
602                         <%/if>
603
604                 <%/if>
605
606         <%elseif galleryRequested>
607
608                 <%foreach albums album|paginate pageSize=core.preferences.imagesPerPage pageParameter=request.page pagination=albumPagination>
609                         <%first>
610                                 <h2><%= Page.ImageBrowser.Header.Albums|l10n|html></h2>
611                                 <%include include/pagination.html pagination=albumPagination pageParameter=="page">
612                                 <div class="images">
613                         <%/first>
614                         <%if loop.even><div class="album-row"><%/if>
615                         <div id="album-<% album.id|html>" class="album">
616                                 <div class="album-id hidden"><% album.id|html></div>
617                                 <%include include/viewAlbum.html>
618                         </div>
619                         <%= false|store key==endRow>
620                         <%if loop.odd><%= true|store key==endRow><%/if>
621                         <%last><%= true|store key==endRow><%/last>
622                         <%if endRow></div><%/if>
623                         <%last>
624                                 </div>
625                                 <%include include/pagination.html pagination=albumPagination pageParameter=="page">
626                         <%/last>
627                 <%/foreach>
628
629         <%/if>
630
631 <%include include/tail.html>