mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-28 23:03:25 +09:00
issue 1172 fixed. broken table layout fixed.
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10226 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
71f97dc11e
commit
ab274266c5
23 changed files with 874 additions and 188 deletions
|
|
@ -16,8 +16,8 @@
|
|||
<thead>
|
||||
<tr>
|
||||
<th scope="col" class="title">{$lang->category_title}</th>
|
||||
<th scope="col">{$lang->regdate}</th>
|
||||
<th scope="col"> </th>
|
||||
<th scope="col" class="nowr">{$lang->regdate}</th>
|
||||
<th scope="col" class="nowr"> </th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
@ -29,8 +29,8 @@
|
|||
<!--@foreach($category_list as $key => $val)-->
|
||||
<tr>
|
||||
<td class="title">{$val->title}</td>
|
||||
<td>{zdate($val->regdate,"Y-m-d H:i:s")}</td>
|
||||
<td>
|
||||
<td class="nowr">{zdate($val->regdate,"Y-m-d")}</td>
|
||||
<td class="nowr">
|
||||
<a href="{getUrl('module_category_srl',$val->module_category_srl)}">{$lang->cmd_modify}</a>
|
||||
<button type="button" class="text" onclick="doUpdateCategory('{$val->module_category_srl}','{$lang->confirm_delete}');return false;">{$lang->cmd_delete}</button>
|
||||
</td>
|
||||
|
|
|
|||
|
|
@ -8,18 +8,18 @@
|
|||
</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">{$lang->favorite}</th>
|
||||
<th scope="col" class="nowr">{$lang->favorite}</th>
|
||||
<th scope="col" class="title">{$lang->module_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_delete}</th>
|
||||
<th scope="col" class="nowr">{$lang->version}</th>
|
||||
<th scope="col" class="nowr">{$lang->author}</th>
|
||||
<th scope="col" class="nowr">{$lang->path}</th>
|
||||
<th scope="col" class="nowr">{$lang->cmd_delete}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<!--@foreach($module_list as $key => $val)-->
|
||||
<tr>
|
||||
<td>
|
||||
<td class="nowr">
|
||||
<!--@if(in_array($val->module,$favoriteModuleList))-->
|
||||
<a href="#" class="fvOn" onclick="doToggleFavoriteModule(this, '{$val->module}'); return false;">{$lang->favorite}({$lang->on})</a>
|
||||
<!--@else-->
|
||||
|
|
@ -39,8 +39,8 @@
|
|||
<p cond="$val->need_update" class="update">{$lang->msg_avail_update} <a href=="#" onclick="doUpdateModule('{$val->module}'); return false;">{$lang->msg_do_you_like_update}</a></p>
|
||||
<p cond="$val->need_autoinstall_update == 'Y'" class="update">{$lang->msg_avail_easy_update}<a href="{$val->update_url}&return_url={urlencode(getRequestUriByServerEnviroment())}">{$lang->msg_do_you_like_update}</a></p>
|
||||
</td>
|
||||
<td>{$val->version}</td>
|
||||
<td>
|
||||
<td class="nowr">{$val->version}</td>
|
||||
<td class="nowr">
|
||||
<!--@foreach($val->author as $author)-->
|
||||
<!--@if($author->homepage)-->
|
||||
<a href="{$author->homepage}" onclick="window.open(this.href);return false;" target="_blank">
|
||||
|
|
@ -51,8 +51,8 @@
|
|||
<!--@end-->
|
||||
<!--@endforeach-->
|
||||
</td>
|
||||
<td>{$val->path}</td>
|
||||
<td>
|
||||
<td class="nowr">{$val->path}</td>
|
||||
<td class="nowr">
|
||||
<!--@if($val->delete_url)-->
|
||||
<a href="{$val->delete_url}&return_url={urlencode(getRequestUriByServerEnviroment())}">{$lang->cmd_delete}</a>
|
||||
<!--@end-->
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue