diff options
author | mistic100 <mistic@piwigo.org> | 2011-10-17 18:59:07 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2011-10-17 18:59:07 +0000 |
commit | 59e744f37926fcf0ec985a2e97bc9115347b0280 (patch) | |
tree | fef5c1deff78a915c718d4e0e50fc5ad3e8b68bb /admin/themes/default/template | |
parent | ad2f001097a8b80f9a7dd5c6e293ef6e7fe05b43 (diff) |
feature:2471 [Batch Manager] "zoom" and "edit" links over each thumbnail
git-svn-id: http://piwigo.org/svn/trunk@12474 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/themes/default/template')
-rw-r--r-- | admin/themes/default/template/batch_manager_global.tpl | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/admin/themes/default/template/batch_manager_global.tpl b/admin/themes/default/template/batch_manager_global.tpl index 137958e6a..627156be4 100644 --- a/admin/themes/default/template/batch_manager_global.tpl +++ b/admin/themes/default/template/batch_manager_global.tpl @@ -1,5 +1,6 @@ {include file='include/tag_selection.inc.tpl'} {include file='include/datepicker.inc.tpl'} +{include file='include/colorbox.inc.tpl'} {footer_script}{literal} pwg_initialization_datepicker("#date_creation_day", "#date_creation_month", "#date_creation_year", "#date_creation_linked_date", "#date_creation_action_set"); @@ -11,6 +12,8 @@ {footer_script require='jquery.tokeninput'} jQuery(document).ready(function() {ldelim} + jQuery("a.preview-box").colorbox(); + var tag_src = [{foreach from=$tags item=tag name=tags}{ldelim}name:"{$tag.name|@escape:'javascript'}",id:"{$tag.id}"{rdelim}{if !$smarty.foreach.tags.last},{/if}{/foreach}]; jQuery("#tags").tokenInput( tag_src, @@ -548,22 +551,25 @@ jQuery(window).load(function() { {assign var='isSelected' value=false} {/if} - <li><span class="wrap1"> + <li> + <span class="wrap1"> <label> <span class="wrap2{if $isSelected} thumbSelected{/if}"> - {if $thumbnail.LEVEL > 0} - <em class="levelIndicatorB">{$pwg->l10n($pwg->sprintf('Level %d',$thumbnail.LEVEL))}</em> - <em class="levelIndicatorF" title="{'Who can see these photos?'|@translate} : ">{$pwg->l10n($pwg->sprintf('Level %d',$thumbnail.LEVEL))}</em> - {/if} - <span> - <img src="{$thumbnail.TN_SRC}" - alt="{$thumbnail.FILE}" - title="{$thumbnail.TITLE|@escape:'html'}" - class="thumbnail"> - </span></span> + <div class="actions"><a href="{$thumbnail.FILE_SRC}" class="preview-box">{'Zoom'|@translate}</a> | <a href="{$thumbnail.U_EDIT}" target="_blank">{'Edit'|@translate}</a></div> + {if $thumbnail.LEVEL > 0} + <em class="levelIndicatorB">{$pwg->l10n($pwg->sprintf('Level %d',$thumbnail.LEVEL))}</em> + <em class="levelIndicatorF" title="{'Who can see these photos?'|@translate} : ">{$pwg->l10n($pwg->sprintf('Level %d',$thumbnail.LEVEL))}</em> + {/if} + <span> + <img src="{$thumbnail.TN_SRC}" + alt="{$thumbnail.FILE}" + title="{$thumbnail.TITLE|@escape:'html'}" + class="thumbnail"> + </span> + </span> <input type="checkbox" name="selection[]" value="{$thumbnail.ID}" {if $isSelected}checked="checked"{/if}> </label> - </span> + </span> </li> {/foreach} </ul> |