mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
98918bc336
- Added new phrases where missing or hard coded - Fixed windowz new lines in /application/*
67 lines
1.4 KiB
PHP
67 lines
1.4 KiB
PHP
<?php
|
|
$this->load->view('templates/header', array('title' => 'StatusgrundNew'));
|
|
?>
|
|
|
|
<div class="row">
|
|
<div class="span4">
|
|
<h2>Neuer Statusgrund</h2>
|
|
<form method="post" action="<?php echo site_url("crm/Statusgrund/insGrund"); ?>">
|
|
<table>
|
|
<tr>
|
|
<td colspan="2">
|
|
Bezeichnung mehrsprachig:<br/><br/>
|
|
|
|
<?php foreach ($sprache as $s): ?>
|
|
<?php echo $s->sprache; ?>:<br/>
|
|
<input type="text" name="bezeichnung_mehrsprachig[]" value="" /><br/>
|
|
<?php endforeach ?>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
Beschreibung:<br/><br/>
|
|
|
|
<?php foreach ($sprache as $s): ?>
|
|
<?php echo $s->sprache; ?>:<br/>
|
|
<textarea name="beschreibung[]"></textarea><br/>
|
|
<?php endforeach ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
Aktiv:
|
|
</td>
|
|
<td>
|
|
<input type="checkbox" name="aktiv" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" align="center">
|
|
<button type="submit">Save</button>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<input type="hidden" name="status_kurzbz" value="<?php echo $status_kurzbz; ?>" />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|