diff options
author | patdenice <patdenice@piwigo.org> | 2008-03-02 18:56:05 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2008-03-02 18:56:05 +0000 |
commit | 1283b5ecb1e5e01d9f2ebef555949ac517be89dd (patch) | |
tree | ad8c1c347d50324989f1776e8a3a2c30a5c99478 /template/yoga/admin/plugins_list.tpl | |
parent | 78e175b3fb7c8d2f9824b15632595523f9ea236c (diff) |
Corections to respect coding conventions.
Change plugins versions to 1.8
Change 3 plugins URI.
git-svn-id: http://piwigo.org/svn/trunk@2243 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/admin/plugins_list.tpl')
-rw-r--r-- | template/yoga/admin/plugins_list.tpl | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/template/yoga/admin/plugins_list.tpl b/template/yoga/admin/plugins_list.tpl index e96cf7f89..89b57d448 100644 --- a/template/yoga/admin/plugins_list.tpl +++ b/template/yoga/admin/plugins_list.tpl @@ -11,28 +11,28 @@ {if isset($plugins)} <table class="table2"> <thead> - <tr class="throw"> - <td>{'Name'|@translate}</td> - <td>{'Version'|@translate}</td> - <td>{'Description'|@translate}</td> - <td>{'Actions'|@translate}</td> - </tr> + <tr class="throw"> + <td>{'Name'|@translate}</td> + <td>{'Version'|@translate}</td> + <td>{'Description'|@translate}</td> + <td>{'Actions'|@translate}</td> + </tr> </thead> {foreach from=$plugins item=plugin name=plugins_loop} - <tr class="{if $smarty.foreach.plugins_loop.index is odd}row1{else}row2{/if}"> - <td>{$plugin.NAME}</td> - <td>{$plugin.VERSION}</td> - <td>{$plugin.DESCRIPTION}</td> - <td> - {foreach from=$plugin.actions item=action} - <a href="{$action.U_ACTION}" - {if isset($action.CONFIRM)} + <tr class="{if $smarty.foreach.plugins_loop.index is odd}row1{else}row2{/if}"> + <td>{$plugin.NAME}</td> + <td>{$plugin.VERSION}</td> + <td>{$plugin.DESCRIPTION}</td> + <td> + {foreach from=$plugin.actions item=action} + <a href="{$action.U_ACTION}" + {if isset($action.CONFIRM)} onclick="return confirm('{$action.CONFIRM|@escape:javascript}');" {/if} - {$TAG_INPUT_ENABLED}>{$action.L_ACTION}</a> - {/foreach} - </td> - </tr> + {$TAG_INPUT_ENABLED}>{$action.L_ACTION}</a> + {/foreach} + </td> + </tr> {/foreach} </table> {/if} |