Files
FHC-Core/application/views/lehre/lehrauftrag/Dashboard.php
T
2019-11-12 16:02:13 +01:00

39 lines
835 B
PHP

<?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'); ?>