developer/template/default/global_gserver_file_template_list.tpl

63 lines
3.1 KiB
Smarty
Raw Permalink Normal View History

2014-08-30 11:47:54 +02:00
<section class="content-header">
2014-10-03 10:52:42 +02:00
<h1><?php echo $gsprache->file.' '.$gsprache->template;?></h1>
2014-08-30 11:47:54 +02:00
<ol class="breadcrumb">
<li><a href="<?php echo $targetFile;?>"><i class="fa fa-home"></i> Home</a></li>
2014-10-03 10:52:42 +02:00
<li><a href="<?php echo $targetFile;?>?w=gs"><i class="fa fa-gamepad"></i> <?php echo $gsprache->gameserver;?></a></li>
<li><a href="<?php echo $targetFile;?>?w=gt"><i class="fa fa-floppy-o"></i> <?php echo $gsprache->file.' '.$gsprache->template;?></a></li>
<li class="active"><?php echo $gsprache->overview;?></li>
2014-08-30 11:47:54 +02:00
</ol>
</section>
2014-10-03 11:55:59 +02:00
2014-08-30 11:47:54 +02:00
<section class="content">
<div class="row">
<div class="col-md-12">
<?php echo $gsprache->template;?> <a href="<?php echo $targetFile;?>?w=gt&amp;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">
2014-09-22 20:50:23 +02:00
<div class="box box-primary">
<div class="box-body">
<div class="table-responsive">
<table id="dataTable" class="table table-bordered table-striped">
<thead>
<tr>
<th><?php echo $sprache->abkuerz;?></th>
<th>ID</th>
<th><?php echo $sprache->game;?></th>
<th><?php echo $gsprache->action;?></th>
</tr>
</thead>
<tbody>
<?php foreach ($table as $table_row) { ?>
<tr>
<td><?php echo $table_row['name'];?></td>
<td><?php echo $table_row['id'];?></td>
<td><?php echo $table_row['servertype'];?></td>
<td>
<a href="<?php echo $targetFile;?>?w=gt&amp;d=dl&amp;id=<?php echo $table_row['id'];?>" ><span class="btn btn-sm btn-danger"><i class="fa fa-trash-o"></i> <?php echo $gsprache->del;?></span></a>
<a href="<?php echo $targetFile;?>?w=gt&amp;d=md&amp;id=<?php echo $table_row['id'];?>" ><span class="btn btn-sm btn-primary"><i class="fa fa-edit"></i> <?php echo $gsprache->mod;?></span></a>
</td>
</tr>
<?php } ?>
</tbody>
<tfoot>
<tr>
<th><?php echo $sprache->abkuerz;?></th>
<th>ID</th>
<th><?php echo $sprache->game;?></th>
<th><?php echo $gsprache->action;?></th>
</tr>
</tfoot>
</table>
</div>
</div>
2014-08-30 11:47:54 +02:00
</div>
</div>
2014-01-03 00:02:24 +01:00
</div>
2014-08-30 11:47:54 +02:00
</section>