mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 18:51:41 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8987 201d5d3c-b55e-5fd7-737f-ddc643e51545
38 lines
1.5 KiB
HTML
38 lines
1.5 KiB
HTML
<include target="header.html" />
|
|
|
|
<div class="table even easyList">
|
|
<table width="100%" border="1" cellspacing="0">
|
|
<caption>All({$tCount})</caption>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" class="title">{$lang->widget_name}</th>
|
|
<th scope="col">{$lang->version}</th>
|
|
<th scope="col">{$lang->author}</th>
|
|
<th scope="col">{$lang->path}</th>
|
|
<th scope="col">{$lang->cmd_generate_code}</th>
|
|
<th scope="col">{$lang->cmd_delete}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr loop="$widget_list => $widget">
|
|
<td class="title">
|
|
<p><strong>{$widget->title}</strong></p>
|
|
<p>{$widget->description}</p>
|
|
<p cond="$widget->need_update == 'Y'" class="update">
|
|
{$lang->msg_avail_update} <a href="{$widget->update_url}&return_url={urlencode(getRequestUriByServerEnviroment())}">{$lang->msg_do_you_like_update}</a>
|
|
</p>
|
|
</td>
|
|
<td>{$widget->version}</td>
|
|
<td>
|
|
<block loop="$widget->author => $author">
|
|
<a cond="$author->homepage" href="{$author->homepage}" target="_blank">{$author->name}</a>
|
|
<block cond="!$author->homepage">{$author->name}</block>
|
|
</block>
|
|
</td>
|
|
<td>{$widget->path}</td>
|
|
<td><a href="{getUrl('act', 'dispWidgetAdminGenerateCode', 'selected_widget', $widget->widget)}">{$lang->cmd_generate_code}</a></td>
|
|
<td><a cond="$widget->remove_url" href="{$widget->remove_url}&return_url={urlencode(getRequestUriByServerEnviroment())}">{$lang->cmd_delete}</a></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|