diff options
Diffstat (limited to 'admin/templates/plugins.tmpl')
-rw-r--r-- | admin/templates/plugins.tmpl | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/admin/templates/plugins.tmpl b/admin/templates/plugins.tmpl new file mode 100644 index 00000000000..ca32a877256 --- /dev/null +++ b/admin/templates/plugins.tmpl @@ -0,0 +1,23 @@ +<h1>Administration</h1> +<h2>Plugins</h2> + +<table> + <thead> + <tr> + <th>Name</th> + <th>Description</th> + <th>Version</th> + <th>Author</th> + <th></th> + </tr> + </thead> + <tbody> + [%foreach $plugins as $plugin%] + <td>[%$plugin.info.id%]</td> + <td>[%$plugin.info.version%]</td> + <td>[%$plugin.info.name%]</td> + <td>[%$plugin.info.author%]</td> + <td>enable</td> + [%/foreach%] + </tbody> +</table> |