developer/template/default/admin/admin_page_news_list.tpl

71 lines
3.4 KiB
Smarty
Raw Normal View History

2015-05-25 12:11:38 +02:00
<section class="content-header">
<h1><?php echo $gsprache->news;?></h1>
<ol class="breadcrumb">
<li><a href="admin.php"><i class="fa fa-home"></i> Home</a></li>
<li><a href="admin.php?w=pn"><i class="fa fa-globe"></i> CMS</a></li>
<li><a href="admin.php?w=pn"><i class="fa fa-newspaper-o"></i> <?php echo $gsprache->news;?></a></li>
<li class="active"><?php echo $gsprache->overview;?></li>
</ol>
</section>
<section class="content">
<div class="row">
<div class="col-md-12">
<?php echo $gsprache->news;?> <a href="admin.php?w=pn&amp;d=ad"><span class="btn btn-success btn-sm"><i class="fa fa-plus-circle"></i> <?php echo $gsprache->add;?></span></a>
</div>
2013-08-24 12:48:21 +02:00
</div>
2015-05-25 12:11:38 +02:00
<hr>
<div class="row">
<div class="col-md-12">
<div class="box box-primary">
<div class="box-body table-responsive">
<table id="dataTable" class="table table-bordered table-hover">
<thead>
<tr>
<th><?php echo $sprache->title;?></th>
<th>ID</a></th>
<th><?php echo $sprache->languages;?></th>
<th><?php echo $sprache->released;?></th>
<th><?php echo $sprache->author;?></th>
<th><?php echo $sprache->date;?></th>
<th><?php echo $gsprache->action;?></th>
</tr>
</thead>
<tbody>
<?php foreach ($table as $table_row) { ?>
<tr>
<td><a href="<?php echo $table_row['link'];?>" alt="<?php echo $table_row['title'];?>" target="_blank"><?php echo $table_row['title'];?></a></td>
<td><?php echo $table_row['id'];?></td>
<td><?php echo implode(', ',$table_row['languages']);?></td>
<td><?php echo $table_row['released'];?></td>
<td><?php echo $table_row['author'];?></td>
<td><?php echo $table_row['date'];?></td>
<td>
<a href="admin.php?w=pn&amp;d=dl&amp;id=<?php echo $table_row['id'];?>"><span class="btn btn-danger btn-sm"><i class="fa fa-trash-o"></i> <?php echo $gsprache->del;?></span></a>
<a href="admin.php?w=pn&amp;d=md&amp;id=<?php echo $table_row['id'];?>"><span class="btn btn-primary btn-sm"><i class="fa fa-pencil-square-o"></i> <?php echo $gsprache->mod;?></span></a>
</td>
</tr>
<?php } ?>
</tbody>
<tfoot>
<tr>
<th><?php echo $sprache->title;?></th>
<th>ID</a></th>
<th><?php echo $sprache->languages;?></th>
<th><?php echo $sprache->released;?></th>
<th><?php echo $sprache->author;?></th>
<th><?php echo $sprache->date;?></th>
<th><?php echo $gsprache->action;?></th>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
2013-08-24 12:48:21 +02:00
</div>
2015-05-25 12:11:38 +02:00
</section>