Skip to content

Commit

Permalink
feature 2916: add icons on album list
Browse files Browse the repository at this point in the history
git-svn-id: http://piwigo.org/svn/trunk@23394 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
plegall committed Jun 20, 2013
1 parent 6fc0774 commit 1a5ba81
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions admin/themes/default/template/cat_list.tpl
Expand Up @@ -127,16 +127,16 @@ jQuery(document).ready(function(){
</p>

<p class="albumActions">
<a href="{$category.U_EDIT}">{'Edit'|@translate}</a>
<a href="{$category.U_EDIT}"><span class="icon-pencil"></span>{'Edit'|@translate}</a>
{if isset($category.U_MANAGE_ELEMENTS) }
| <a href="{$category.U_MANAGE_ELEMENTS}">{'manage album photos'|@translate}</a>
| <a href="{$category.U_MANAGE_ELEMENTS}"><span class="icon-picture"></span>{'manage album photos'|@translate}</a>
{/if}
| <a href="{$category.U_CHILDREN}">{'manage sub-albums'|@translate}</a>
| <a href="{$category.U_CHILDREN}"><span class="icon-sitemap"></span>{'manage sub-albums'|@translate}</a>
{if isset($category.U_SYNC) }
| <a href="{$category.U_SYNC}">{'Synchronize'|@translate}</a>
| <a href="{$category.U_SYNC}"><span class="icon-exchange"></span>{'Synchronize'|@translate}</a>
{/if}
{if isset($category.U_DELETE) }
| <a href="{$category.U_DELETE}" onclick="return confirm('{'Are you sure?'|@translate|@escape:javascript}');">{'delete album'|@translate}</a>
| <a href="{$category.U_DELETE}" onclick="return confirm('{'Are you sure?'|@translate|@escape:javascript}');"><span class="icon-trash"></span>{'delete album'|@translate}</a>
{/if}
{if cat_admin_access($category.ID)}
| <a href="{$category.U_JUMPTO}">{'jump to album'|@translate} →</a>
Expand Down

0 comments on commit 1a5ba81

Please sign in to comment.