|
|
@ -6,7 +6,8 @@ |
|
|
<th><?php echo i18n('Published');?></th><?php if (config("views.counter") == "true"): ?>
|
|
|
<th><?php echo i18n('Published');?></th><?php if (config("views.counter") == "true"): ?>
|
|
|
<th>Views</th><?php endif; ?>
|
|
|
<th>Views</th><?php endif; ?>
|
|
|
<th><?php echo i18n('Author');?></th>
|
|
|
<th><?php echo i18n('Author');?></th>
|
|
|
<th><?php echo i18n('Tag');?></th>
|
|
|
|
|
|
|
|
|
<th><?php echo i18n('Category');?></th>
|
|
|
|
|
|
<th><?php echo i18n('Tags');?></th>
|
|
|
<th><?php echo i18n('Operations');?></th>
|
|
|
<th><?php echo i18n('Operations');?></th>
|
|
|
</tr> |
|
|
</tr> |
|
|
<?php $i = 0; |
|
|
<?php $i = 0; |
|
|
@ -28,6 +29,7 @@ |
|
|
<?php if (config("views.counter") == "true"): ?>
|
|
|
<?php if (config("views.counter") == "true"): ?>
|
|
|
<td><?php echo $p->views ?></td><?php endif; ?>
|
|
|
<td><?php echo $p->views ?></td><?php endif; ?>
|
|
|
<td><a target="_blank" href="<?php echo $p->authorUrl ?>"><?php echo $p->author ?></a></td>
|
|
|
<td><a target="_blank" href="<?php echo $p->authorUrl ?>"><?php echo $p->author ?></a></td>
|
|
|
|
|
|
<td><?php echo $p->category ?></td>
|
|
|
<td><?php echo $p->tag ?></td>
|
|
|
<td><?php echo $p->tag ?></td>
|
|
|
<td><a href="<?php echo $p->url ?>/edit?destination=admin/posts"><?php echo i18n('Edit');?></a> <a
|
|
|
<td><a href="<?php echo $p->url ?>/edit?destination=admin/posts"><?php echo i18n('Edit');?></a> <a
|
|
|
href="<?php echo $p->url ?>/delete?destination=admin/posts"><?php echo i18n('Delete');?></a></td>
|
|
|
href="<?php echo $p->url ?>/delete?destination=admin/posts"><?php echo i18n('Delete');?></a></td>
|
|
|
|