1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {template 'common/header'}
- <div class="clearfix">
- {template 'platform/stat-keyword_search'}
- <h4 class="sub-title">详细数据</h4>
- <form action="" method="post" onsubmit="">
- <div class="table-responsive">
- <table class="table table-hover">
- <thead class="navbar-inner">
- <tr>
- <th style="width:150px;">关键字<i></i></th>
- <th>规则<i></i></th>
- <th style="width:160px;">模块<i></i></th>
- <th style="width:100px;">操作</th>
- </tr>
- </thead>
- <tbody>
- {loop $list $row}
- <tr>
- <td>{$row['content']}</td>
- <td class="row-hover">
- {if empty($row['rid'])}
- N/A
- {else}
- <a target="main" href="{$rules[$row['rid']]['url']}">{$rules[$row['rid']]['name']}</a>
- {/if}
- </td>
-
- <td>{if $rules[$row['rid']]['module']}{$rules[$row['rid']]['module']}{else}default{/if}</td>
- <td>
- <a target="main" href="{php echo url('platform/stat/trend', array('id' => $row['rid']))}" title="使用率走势">使用率走势</a>
- </td>
- </tr>
- {/loop}
- </tbody>
- </table>
- </div>
- </form>
- {$pager}
- </div>
- {template 'common/footer'}
|