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_ranks.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 'admin/template/goto/element_set_ranks.tpl')
-rw-r--r-- | admin/template/goto/element_set_ranks.tpl | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/admin/template/goto/element_set_ranks.tpl b/admin/template/goto/element_set_ranks.tpl new file mode 100644 index 000000000..31e614480 --- /dev/null +++ b/admin/template/goto/element_set_ranks.tpl @@ -0,0 +1,41 @@ +<h2>{'Manage image ranks'|@translate}</h2> + +<h3>{$CATEGORIES_NAV}</h3> + +{if !empty($thumbnails)} + <form action="{$F_ACTION}" method="post"> + + <fieldset> + + <legend>{'Edit ranks'|@translate}</legend> + + {if !empty($thumbnails)} + <ul class="thumbnails"> + {foreach from=$thumbnails item=thumbnail} + <li><span class="wrap1"> + <label> + <span class="wrap2"> + {if $thumbnail.LEVEL > 0} + <em class="levelIndicatorB">{$thumbnail.LEVEL}</em> + <em class="levelIndicatorF" title="{$pwg->l10n($pwg->sprintf('Level %d',$thumbnail.LEVEL))}">{$thumbnail.LEVEL}</em> + {/if} + <span> + <img src="{$thumbnail.TN_SRC}" class="thumbnail" /> + </span></span> + <input style="height:12px; width:50px;" type="text" name="rank_of_image[{$thumbnail.ID}]" value="{$thumbnail.RANK}" /> + </label> + </span> + </li> + {/foreach} + </ul> + {/if} + + <p><input class="submit" type="submit" value="{'Submit'|@translate}" name="submit" {$TAG_INPUT_ENABLED}/></p> + + </fieldset> + + </form> + +{else} + <div class="infos"><p>{'No element in this category'|@translate}</p></div> +{/if} |