|
|
|
@ -34,7 +34,9 @@ $(function() { |
|
|
|
<thead> |
|
|
|
<tr class="head" id="head"> |
|
|
|
<th><?php echo i18n('Title');?> </th>
|
|
|
|
<th><?php echo i18n('Description');?></th>
|
|
|
|
<?php if (config("views.counter") == "true"): ?>
|
|
|
|
<th><?php echo i18n('Views');?></th>
|
|
|
|
<?php endif; ?>
|
|
|
|
<th><?php echo i18n('Operations');?></th>
|
|
|
|
<th>Sub <?php echo i18n('pages');?></th>
|
|
|
|
</tr> |
|
|
|
@ -45,15 +47,15 @@ $(function() { |
|
|
|
<?php $dr = find_draft_subpage($p->slug);?>
|
|
|
|
<tr id="<?php echo $p->md;?>" class="sort-item" style="cursor:move;"> |
|
|
|
<td><a href="<?php echo site_url();?>admin/pages/<?php echo $p->slug;?>"><?php echo $p->title;?></a></td>
|
|
|
|
<td><?php echo shorten($p->description, '50');?>...</td>
|
|
|
|
<td><a class="btn btn-primary btn-xs" href="<?php echo $p->url;?>/add?destination=admin/pages/<?php echo $p->slug;?>"><?php echo i18n('Add_sub');?></a> <a class="btn btn-primary btn-xs" href="<?php echo $p->url;?>/edit?destination=admin/pages"><?php echo i18n('Edit');?></a> <?php if (empty($dd) && empty($dr)):?><a class="btn btn-danger btn-xs" href="<?php echo $p->url;?>/delete?destination=admin/pages"><?php echo i18n('Delete');?></a><?php endif;?></td>
|
|
|
|
<td><?php echo $p->views;?></td>
|
|
|
|
<td><a class="btn btn-primary btn-xs" href="<?php echo site_url();?>admin/pages/<?php echo $p->slug;?>"><?php echo i18n('page');?> <?php echo i18n('settings');?></a> <a class="btn btn-primary btn-xs" href="<?php echo $p->url;?>/add?destination=admin/pages/<?php echo $p->slug;?>"><?php echo i18n('Add_sub');?></a> <a class="btn btn-primary btn-xs" href="<?php echo $p->url;?>/edit?destination=admin/pages"><?php echo i18n('Edit');?></a> <?php if (empty($dd) && empty($dr)):?><a class="btn btn-danger btn-xs" href="<?php echo $p->url;?>/delete?destination=admin/pages"><?php echo i18n('Delete');?></a><?php endif;?></td>
|
|
|
|
<td> |
|
|
|
<div><a class="btn btn-primary btn-xs" href="<?php echo site_url();?>admin/pages/<?php echo $p->slug;?>"><?php echo i18n('page');?> <?php echo i18n('settings');?></a></div><hr>
|
|
|
|
<?php foreach ($dd as $sp):?>
|
|
|
|
<div class="row"> |
|
|
|
<div class="col-sm"> |
|
|
|
<span><a target="_blank" href="<?php echo $sp->url;?>"><?php echo $sp->title;?></a></span>
|
|
|
|
</div> |
|
|
|
<div class="col-sm"><i class="fa fa-line-chart" aria-hidden="true"></i> <?php echo $sp->views;?></div>
|
|
|
|
<div class="col-sm"> |
|
|
|
<span><a class="btn btn-primary btn-xs" href="<?php echo $sp->url;?>/edit?destination=admin/pages/<?php echo $sp->parentSlug;?>"><?php echo i18n('Edit');?></a> <a class="btn btn-danger btn-xs" href="<?php echo $sp->url;?>/delete?destination=admin/pages/<?php echo $sp->parentSlug;?>"><?php echo i18n('Delete');?></a></span>
|
|
|
|
</div> |
|
|
|
|