mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-27 05:21:13 +02:00
01be744d07
(Since Javascript/Rating it was not possible to change button without loosing rating stars). p0w0 is fix for a new button display. git-svn-id: http://piwigo.org/svn/trunk@1780 68402e56-0260-453c-a942-63ccdbb3a9ee
90 lines
3.1 KiB
Smarty
90 lines
3.1 KiB
Smarty
<h2>{lang:Batch management}</h2>
|
|
|
|
<h3>{CATEGORIES_NAV}</h3>
|
|
|
|
<p style="text-align:center;">
|
|
<a href="{U_GLOBAL_MODE}">{lang:global mode}</a>
|
|
| {lang:unit mode}
|
|
</p>
|
|
|
|
<form action="{F_ACTION}" method="POST">
|
|
<fieldset>
|
|
|
|
<legend>{lang:Display options}</legend>
|
|
<input type="hidden" name="list" value="{IDS_LIST}" />
|
|
<p>{lang:elements per page} :
|
|
<a href="{U_ELEMENTS_PAGE}&display=5">5</a>
|
|
| <a href="{U_ELEMENTS_PAGE}&display=10">10</a>
|
|
| <a href="{U_ELEMENTS_PAGE}&display=50">50</a>
|
|
| <a href="{U_ELEMENTS_PAGE}&display=all">{lang:all}</a>
|
|
</p>
|
|
|
|
</fieldset>
|
|
|
|
<div class="navigationBar">{NAV_BAR}</div>
|
|
|
|
<!-- BEGIN element -->
|
|
<fieldset class="elementEdit">
|
|
<legend>{element.LEGEND}</legend>
|
|
|
|
<a href="{element.U_EDIT}"><img src="{element.TN_SRC}" alt="" class="miniature" title="{lang:Edit all picture informations}" /></a>
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
<td><strong>{lang:Name}</strong></td>
|
|
<td><input type="text" name="name-{element.ID}" value="{element.NAME}" /></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><strong>{lang:Author}</strong></td>
|
|
<td><input type="text" name="author-{element.ID}" value="{element.AUTHOR}" /></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><strong>{lang:Creation date}</strong></td>
|
|
<td>
|
|
<label><input type="radio" name="date_creation_action-{element.ID}" value="unset" /> {lang:unset}</label>
|
|
<input type="radio" name="date_creation_action-{element.ID}" value="set" id="date_creation_action_set-{element.ID}" /> {lang:set to}
|
|
<select onmousedown="document.getElementById('date_creation_action_set-{element.ID}').checked = true;" name="date_creation_day-{element.ID}">
|
|
<!-- BEGIN date_creation_day -->
|
|
<option {element.date_creation_day.SELECTED} value="{element.date_creation_day.VALUE}">{element.date_creation_day.OPTION}</option>
|
|
<!-- END date_creation_day -->
|
|
</select>
|
|
<select onmousedown="document.getElementById('date_creation_action_set-{element.ID}').checked = true;" name="date_creation_month-{element.ID}">
|
|
<!-- BEGIN date_creation_month -->
|
|
<option {element.date_creation_month.SELECTED} value="{element.date_creation_month.VALUE}">{element.date_creation_month.OPTION}</option>
|
|
<!-- END date_creation_month -->
|
|
</select>
|
|
<input onmousedown="document.getElementById('date_creation_action_set-{element.ID}').checked = true;"
|
|
name="date_creation_year-{element.ID}"
|
|
type="text"
|
|
size="4"
|
|
maxlength="4"
|
|
value="{element.DATE_CREATION_YEAR}" />
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><strong>{lang:Tags}</strong></td>
|
|
<td>{element.TAG_SELECTION}</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><strong>{lang:Description}</strong></td>
|
|
<td><textarea name="description-{element.ID}" class="description">{element.DESCRIPTION}</textarea></td>
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</fieldset>
|
|
<!-- END element -->
|
|
|
|
<p>
|
|
<input class="submit" type="submit" value="{L_SUBMIT}" name="submit" {TAG_INPUT_ENABLED}/>
|
|
<input class="submit" type="reset" value="{lang:Reset}" />
|
|
</p>
|
|
|
|
|
|
</form>
|