Dashboard für Lehraufträge hinzugefügt

This commit is contained in:
Andreas Österreicher
2019-11-12 16:02:13 +01:00
parent 80ed75a6ad
commit 609adcc431
3 changed files with 100 additions and 45 deletions
@@ -0,0 +1,38 @@
<?php
$this->load->view(
'templates/FHC-Header',
array(
'title' => 'Lehrauftrag bestellen',
'jquery' => true,
'jqueryui' => true,
'bootstrap' => true,
'fontawesome' => true,
'sbadmintemplate' => true,
'ajaxlib' => true,
'dialoglib' => true,
'navigationwidget' => true,
'addons' => true,
)
);
?>
<body>
<?php echo $this->widgetlib->widget('NavigationWidget'); ?>
<div id="page-wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<h3 class="page-header">
Lehrauftrag
</h3>
</div>
</div>
<div id="dashboard"></div>
</div>
</div>
</body>
<?php $this->load->view('templates/FHC-Footer'); ?>