mirror of
https://github.com/easy-wi/developer.git
synced 2025-02-20 11:23:28 +08:00
71 lines
3.4 KiB
Smarty
71 lines
3.4 KiB
Smarty
<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&d=ad"><span class="btn btn-success btn-sm"><i class="fa fa-plus-circle"></i> <?php echo $gsprache->add;?></span></a>
|
|
</div>
|
|
</div>
|
|
|
|
<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&d=dl&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&d=md&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>
|
|
</div>
|
|
</section> |