mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
a603081544
- Added new PostgreSQL types in application/core/DB_Model.php - Updated the includes in application/views/* - Added new view template application/views/templates/FHC-Common.php - Moved JS includes in application/views/templates/FHC-Footer.php - Updated JS and CSS includes in application/views/templates/FHC-Footer.php and application/views/templates/FHC-Header.php - Updated public/js/bootstrapper.js - Changed global variable names in application/views/templates/FHC-Common.php to include the version of the included source
21 lines
587 B
PHP
21 lines
587 B
PHP
<?php
|
|
$jahr = $studienjahr[0];
|
|
$this->load->view('templates/header', array('title' => 'StudienjahrEdit', 'jquery3' => true));
|
|
?>
|
|
<body>
|
|
<div class="row">
|
|
<div class="row">
|
|
<div class="span4">
|
|
<h2>Studienjahr bearbeiten: <?php echo $jahr->studienjahr_kurzbz; ?></h2>
|
|
<form method="post" action="<?php echo site_url("organisation/studienjahr/updateStudienjahr"); ?>">
|
|
|
|
<table>
|
|
<?php include('studienjahrForm.php'); ?>
|
|
<input type="hidden" name="studienjahrkurzbz" value="<?php echo $jahr->studienjahr_kurzbz; ?>"/>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|