* remove fixedTheadOfList and fixedTfootAction.

This commit is contained in:
wangyidong
2018-04-28 15:57:16 +08:00
parent 8d15930ecf
commit fddcb3f23c
28 changed files with 175 additions and 289 deletions
+3 -3
View File
@@ -68,13 +68,13 @@
<?php foreach($todos as $todo):?>
<tr>
<td class="c-id">
<?php if($type != 'cycle' and (common::hasPriv('todo', 'batchEdit') or (common::hasPriv('todo', 'import2Today') and $importFuture))):?>
<div class="checkbox-primary">
<?php if($type != 'cycle' and (common::hasPriv('todo', 'batchEdit') or (common::hasPriv('todo', 'import2Today') and $importFuture))):?>
<input type='checkbox' name='todoIDList[<?php echo $todo->id;?>]' value='<?php echo $todo->id;?>' />
<label></label>
<?php endif;?>
<?php echo $todo->id?>
</div>
<?php endif;?>
<?php echo $todo->id?>
</td>
<td class="c-date"><?php echo $todo->date == '2030-01-01' ? $lang->todo->periods['future'] : $todo->date;?></td>
<td class="c-type"><?php echo $lang->todo->typeList[$todo->type];?></td>