<table class="typecho-list-table">
<colgroup>
<col width="25"/>
<col width="235"/>
<col width="200"/>
<col width="165"/>
<col width="165"/>
</colgroup>
<thead>
<tr>
<th class="typecho-radius-topleft"> </th>
<th>标题</th>
<th> </th>
<th>作者</th>
<th>分类</th>
<th class="typecho-radius-topright">发布日期</th>
</tr>
</thead>
<tbody>
<?php if($posts->num_rows() > 0):?>
<?php foreach($posts->result() as $post):?>
<tr
<?php echo ($post->ID % 2==0)?
'':' class="even"'; ?> id="
<?php echo 'post-'.$post->ID; ?>">
<td><input type="checkbox" value="
<?php echo $post->ID; ?>" name="pid[]"/></td>
<td>
<?php echo anchor
(site_url
('admin/posts/write/'.$post->ID),$post->Title);?></td>
<td>
<?php if ('1' == $post->IfDone): ?>
<a class="right hidden-by-mouse" href="
<?php echo site_url
('posts/'.$post->InfoType); ?>"><img src="
<?php echo base_url
();?>application/views/images/view.gif" title="
<?php echo '浏览'. $post->Title; ?>" width="16" height="16" alt="view" /></a>
<?php endif; ?>
</td>
<td>
<?php echo anchor
("admin/posts/manage/?author=".$post->UserID,$post->Title); ?></td>
<td>
<?php echo anchor
("admin/posts/manage/?infotype=".$post->InfoType,$post->InfoType); ?>
</td>
</tr>
<?php endforeach; ?>
<?php else: ?>
<tr class="even">
<td colspan="7"><h6 class="typecho-list-table-title">没有任务文章</h6></td>
</tr>
<?php endif; ?>
</tbody>
</table>
<?php echo isset($pagination)?
$pagination:''; ?>