git-svn-id: http://xe-core.googlecode.com/svn/trunk@47 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-02-15 06:34:23 +00:00
parent 11292f7bf2
commit 2312b2f057
6 changed files with 15 additions and 10 deletions

View file

@ -0,0 +1,21 @@
<table>
<tr>
<th>{$lang->no}</th>
<th>{$lang->module_name}</th>
<th>{$lang->module_version}</th>
<th>{$lang->module_table_count}</th>
<th>{$lang->module_installed_path}</th>
<th>{$lang->author}</th>
</tr>
<!--@foreach($installed_module_list as $no => $module_obj)-->
<tr>
<td>{$no+1}</td>
<td>{$module_obj->title}</td>
<td>{$module_obj->version}</td>
<td>{$module_obj->created_table_count} / {$module_obj->table_count}</td>
<td>{$module_obj->path}</td>
<td><a href="mailto:{$module_obj->author->email_address}">{$module_obj->author->name}</a></td>
</tr>
<!--@end-->
</table>