mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-06 16:53:34 +02:00
bug 377 fixed: the correction of bug 357 was made too quickly... instead of
having two forms, a reordering of the fieldset fixes bug 357 without creating bug 377. improvement: taken from trunk and made by chrisaga, no need to set the number of columns, it's automatic jsut as in the thumbnails public display. git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1307 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -8,47 +8,10 @@
|
||||
| <a href="{U_UNIT_MODE}">{lang:unit mode}</a>
|
||||
</p>
|
||||
|
||||
<form action="{F_ACTION}" method="post">
|
||||
|
||||
<fieldset>
|
||||
|
||||
<legend>{lang:Caddie management}</legend>
|
||||
|
||||
<ul style="list-style-type:none;">
|
||||
|
||||
<!-- BEGIN in_caddie -->
|
||||
<li><label><input type="radio" name="caddie_action" value="empty_all" /> {lang:Empty caddie}</label></li>
|
||||
<li><label><input type="radio" name="caddie_action" value="empty_selected" /> {lang:Take selected elements out of caddie}</label></li>
|
||||
<!-- END in_caddie -->
|
||||
|
||||
<!-- BEGIN not_in_caddie -->
|
||||
<li><input type="radio" name="caddie_action" value="add_selected" /> {lang:Add selected elements to caddie}</li>
|
||||
<!-- END not_in_caddie -->
|
||||
|
||||
</ul>
|
||||
|
||||
<p style="text-align:center;"><input type="submit" value="{L_SUBMIT}" name="submit_caddie" {TAG_INPUT_ENABLED}/></p>
|
||||
|
||||
</fieldset>
|
||||
|
||||
</form>
|
||||
|
||||
<form action="{F_ACTION}" method="post">
|
||||
|
||||
<fieldset>
|
||||
|
||||
<legend>{lang:Display options}</legend>
|
||||
|
||||
<p>{lang:elements per line}:
|
||||
<a href="{U_COLS}&cols=4">4</a>
|
||||
| <a href="{U_COLS}&cols=5">5</a>
|
||||
| <a href="{U_COLS}&cols=6">6</a>
|
||||
| <a href="{U_COLS}&cols=7">7</a>
|
||||
| <a href="{U_COLS}&cols=8">8</a>
|
||||
| <a href="{U_COLS}&cols=9">9</a>
|
||||
| <a href="{U_COLS}&cols=10">10</a>
|
||||
</p>
|
||||
|
||||
<p>{lang:elements per page}:
|
||||
<a href="{U_DISPLAY}&display=20">20</a>
|
||||
| <a href="{U_DISPLAY}&display=50">50</a>
|
||||
@@ -58,6 +21,32 @@
|
||||
|
||||
</fieldset>
|
||||
|
||||
<form action="{F_ACTION}" method="post">
|
||||
|
||||
<fieldset>
|
||||
|
||||
<legend>{lang:Elements}</legend>
|
||||
|
||||
<div class="navigationBar">{NAV_BAR}</div>
|
||||
|
||||
<!-- BEGIN thumbnails -->
|
||||
<ul class="thumbnails">
|
||||
<!-- BEGIN thumbnail -->
|
||||
<li><span class="wrap1"><span class="wrap2">
|
||||
<label>
|
||||
<img src="{thumbnails.thumbnail.SRC}"
|
||||
alt="{thumbnails.thumbnail.ALT}"
|
||||
title="{thumbnails.thumbnail.TITLE}"
|
||||
class="thumbLink" />
|
||||
<input type="checkbox" name="selection[]" value="{thumbnails.thumbnail.ID}" />
|
||||
</label>
|
||||
</li>
|
||||
<!-- END thumbnail -->
|
||||
</ul>
|
||||
<!-- END thumbnails -->
|
||||
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
|
||||
<legend>{lang:Form}</legend>
|
||||
@@ -156,30 +145,22 @@
|
||||
|
||||
<fieldset>
|
||||
|
||||
<legend>{lang:Elements}</legend>
|
||||
<legend>{lang:Caddie management}</legend>
|
||||
|
||||
<div class="navigationBar">{NAV_BAR}</div>
|
||||
<ul style="list-style-type:none;">
|
||||
|
||||
<!-- BEGIN thumbnails -->
|
||||
<!--table valign="top" align="center" class="thumbnail"-->
|
||||
<table class="thumbnail">
|
||||
<!-- BEGIN line -->
|
||||
<tr>
|
||||
<!-- BEGIN thumbnail -->
|
||||
<td class="thumbnail">
|
||||
<label>
|
||||
<img src="{thumbnails.line.thumbnail.SRC}"
|
||||
alt="{thumbnails.line.thumbnail.ALT}"
|
||||
title="{thumbnails.line.thumbnail.TITLE}"
|
||||
class="thumbLink" />
|
||||
<input type="checkbox" name="selection[]" value="{thumbnails.line.thumbnail.ID}" />
|
||||
</label>
|
||||
</td>
|
||||
<!-- END thumbnail -->
|
||||
</tr>
|
||||
<!-- END line -->
|
||||
</table>
|
||||
<!-- END thumbnails -->
|
||||
<!-- BEGIN in_caddie -->
|
||||
<li><label><input type="radio" name="caddie_action" value="empty_all" /> {lang:Empty caddie}</label></li>
|
||||
<li><label><input type="radio" name="caddie_action" value="empty_selected" /> {lang:Take selected elements out of caddie}</label></li>
|
||||
<!-- END in_caddie -->
|
||||
|
||||
<!-- BEGIN not_in_caddie -->
|
||||
<li><label><input type="radio" name="caddie_action" value="add_selected" /> {lang:Add selected elements to caddie}</label></li>
|
||||
<!-- END not_in_caddie -->
|
||||
|
||||
</ul>
|
||||
|
||||
<p><input type="submit" value="{L_SUBMIT}" name="submit_caddie" {TAG_INPUT_ENABLED}/></p>
|
||||
|
||||
</fieldset>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user