mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-08 23:59:28 +00:00
3d42622490
- Added new folder views/system/phrases - Moved views phraseinhaltEdit.php, phrases.php, phrasesEdit.php, phrasesList.php and phrasesinhaltList.php from views/system/ to views/system/phrases/ - Adapted the code to work with this change
18 lines
480 B
PHP
18 lines
480 B
PHP
<?php
|
|
$this->load->view('templates/header', array('title' => 'PhrasesEdit'));
|
|
?>
|
|
<div class="row">
|
|
<div class="span4">
|
|
<h2>Phrase: <?php echo $phrase->phrase_id; ?></h2>
|
|
<form method="post" action="../save">
|
|
Bezeichnung: <input type="text" name="phrase" value="<?php echo $phrase->phrase; ?>" />
|
|
<input type="hidden" name="phrase_id" value="<?php echo $phrase->phrase_id; ?>" />
|
|
<button type="submit">Save</button>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|