diff options
author | rvelices <rv-github@modusoptimus.com> | 2006-10-26 03:35:20 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2006-10-26 03:35:20 +0000 |
commit | 12182ddcfeced9934f45f20a3859049066ce0726 (patch) | |
tree | 01112ee697fa5f7cfb421fee0e6d212069ed1d58 /template/yoga/admin/plugins.tpl | |
parent | 9e770f68a31109748880b9027dfd43d1495f13df (diff) |
plugins: first prototype version
git-svn-id: http://piwigo.org/svn/trunk@1578 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/admin/plugins.tpl')
-rw-r--r-- | template/yoga/admin/plugins.tpl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/template/yoga/admin/plugins.tpl b/template/yoga/admin/plugins.tpl new file mode 100644 index 000000000..81bade54d --- /dev/null +++ b/template/yoga/admin/plugins.tpl @@ -0,0 +1,20 @@ +<div class="titrePage"> + <h2>{lang:Plugins}</h2> +</div> + +<!-- BEGIN plugins --> +<table> +<thead><tr> + <td>{lang:Name}</td> + <td>{lang:Description}</td> + <td>{lang:Action}</td> +</tr></thead> +<!-- BEGIN plugin --> +<tr> + <td>{plugins.plugin.NAME}</td> + <td>{plugins.plugin.DESCRIPTION}</td> + <td><a href="{plugins.plugin.U_ACTION}">{plugins.plugin.L_ACTION}</a></td> +</tr> +<!-- END plugin --> +</table> +<!-- END plugins -->
\ No newline at end of file |