Add basic(!) html sites to display project information
This commit is contained in:
37
application/views/web/configurations/detail.php
Normal file
37
application/views/web/configurations/detail.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Configuration <?=$name?></title>
|
||||
<link rel="stylesheet" href="/ScattPort/assets/css/inuit.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="grids">
|
||||
<div class="grid grid-10">
|
||||
<table>
|
||||
<tr>
|
||||
<th colspan="2">
|
||||
Konfigurationsdetails
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ID</td><td><?=$id?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Name</td><td><?=$name?></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="grid grid-6">
|
||||
<table>
|
||||
<tr>
|
||||
<th>Beschreibung</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><?=nl2br($description)?></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user