Realschule
This commit is contained in:
@@ -28,6 +28,7 @@ $cakeDescription = 'CakePHP: the rapid development php framework';
|
||||
|
||||
<?= $this->Html->css('base.css') ?>
|
||||
<?= $this->Html->css('cake.css') ?>
|
||||
<?= $this->Html->css('budget-costum.css') ?>
|
||||
<?= $this->Html->css('handsontable.min.css') ?>
|
||||
<?= $this->Html->css('handsontable.costum.css') ?>
|
||||
|
||||
@@ -42,13 +43,22 @@ $cakeDescription = 'CakePHP: the rapid development php framework';
|
||||
<nav class="top-bar expanded" data-topbar role="navigation">
|
||||
<ul class="title-area large-3 medium-4 columns">
|
||||
<li class="name">
|
||||
<h1><a href=""><?= $this->fetch('title') ?></a></h1>
|
||||
<?php
|
||||
$session = $this->request->session();
|
||||
if ($session->read('SchoolType') == '02') {
|
||||
echo '<h1>Realschule</h1>';
|
||||
}
|
||||
else {
|
||||
echo '<h1>Gymnasium</h1>';
|
||||
}
|
||||
?>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="top-bar-section">
|
||||
<ul class="right">
|
||||
<li><a target="_blank" href="https://book.cakephp.org/3.0/">Documentation</a></li>
|
||||
<li><a target="_blank" href="https://api.cakephp.org/3.0/">API</a></li>
|
||||
<li><?php echo $this->Html->link('Overview',array('controller' => 'budget', 'action' => 'overview')); ?></li>
|
||||
<li><?php echo $this->Html->link('Budgetart wählen',array('controller' => 'budget', 'action' => 'list_budgets')); ?></li>
|
||||
<li><?php echo $this->Html->link('Schulart ändern',array('controller' => 'budget', 'action' => 'change_school')); ?></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
Reference in New Issue
Block a user