diff options
author | vdigital <vdigital@piwigo.org> | 2008-09-14 12:25:34 +0000 |
---|---|---|
committer | vdigital <vdigital@piwigo.org> | 2008-09-14 12:25:34 +0000 |
commit | f94e5e55116d408bf67b3f346da2a216d18e4124 (patch) | |
tree | bfaa6d82850c47c136d866269dff650841f7cc1e /admin/template/goto/element_set_unit.tpl | |
parent | fecb04f2eccd3e496a91f7996579243366a3a5ab (diff) |
roma tpl were missing.
git-svn-id: http://piwigo.org/svn/trunk@2531 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/template/goto/element_set_unit.tpl | 105 |
1 files changed, 105 insertions, 0 deletions
diff --git a/admin/template/goto/element_set_unit.tpl b/admin/template/goto/element_set_unit.tpl new file mode 100644 index 000000000..40e1c1863 --- /dev/null +++ b/admin/template/goto/element_set_unit.tpl @@ -0,0 +1,105 @@ +{* $Id$ *} + +<h2>{'Batch management'|@translate}</h2> + +<h3>{$CATEGORIES_NAV}</h3> + +<p style="text-align:center;"> + <a href="{$U_GLOBAL_MODE}">{'global mode'|@translate}</a> + | {'unit mode'|@translate} +</p> + +<form action="{$F_ACTION}" method="POST"> +<fieldset> + <legend>{'Display options'|@translate}</legend> + <p>{'elements per page'|@translate} : + <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">{'all'|@translate}</a> + </p> + +</fieldset> + +{if !empty($NAV_BAR) } +<div class="navigationBar">{$NAV_BAR}</div> +{/if} + +{if !empty($elements) } +<input type="hidden" name="element_ids" value="{$ELEMENT_IDS}" /> +{foreach from=$elements item=element} +<fieldset class="elementEdit"> + <legend>{$element.LEGEND}</legend> + + <a href="{$element.U_EDIT}"><img src="{$element.TN_SRC}" alt="" title="{'Edit all picture informations'|@translate}" /></a> + + <table> + + <tr> + <td><strong>{'Name'|@translate}</strong></td> + <td><input type="text" name="name-{$element.ID}" value="{$element.NAME}" /></td> + </tr> + + <tr> + <td><strong>{'Author'|@translate}</strong></td> + <td><input type="text" name="author-{$element.ID}" value="{$element.AUTHOR}" /></td> + </tr> + + <tr> + <td><strong>{'Creation date'|@translate}</strong></td> + <td> + <label><input type="radio" name="date_creation_action-{$element.ID}" value="unset" /> {'unset'|@translate}</label> + <label><input type="radio" name="date_creation_action-{$element.ID}" value="set" id="date_creation_action_set-{$element.ID}" /> {'set to'|@translate}</label> + + <select onmousedown="document.getElementById('date_creation_action_set-{$element.ID}').checked = true;" name="date_creation_day-{$element.ID}"> + <option value="0">--</option> + {section name=day start=1 loop=32} + <option value="{$smarty.section.day.index}" {if $smarty.section.day.index==$element.DATE_CREATION_DAY}selected="selected"{/if}>{$smarty.section.day.index}</option> + {/section} + </select> + <select onmousedown="document.getElementById('date_creation_action_set-{$element.ID}').checked = true;" name="date_creation_month-{$element.ID}"> + {html_options options=$month_list selected=$element.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>{'Tags'|@translate}</strong></td> + <td>{$element.TAG_SELECTION}</td> + </tr> + + <tr> + <td><strong>{'Description'|@translate}</strong></td> + <td><textarea name="description-{$element.ID}" class="description">{$element.DESCRIPTION}</textarea></td> + </tr> + + </table> + +</fieldset> +{/foreach} + +<p> + <input class="submit" type="submit" value="{'Submit'|@translate}" name="submit" {$TAG_INPUT_ENABLED}/> + <input class="submit" type="reset" value="{'Reset'|@translate}" /> +</p> +{/if} + +</form> + +<script type="text/javascript">// <![CDATA[ +{literal}$(document).ready(function() { + $(".elementEdit img").fadeTo("slow", 0.6); // Opacity on page load + $(".elementEdit img").hover(function(){ + $(this).fadeTo("slow", 1.0); // Opacity on hover + },function(){ + $(this).fadeTo("slow", 0.6); // Opacity on mouseout + }); +});{/literal} +// ]]> +</script>
\ No newline at end of file |