ACC SHELL
<div class="content-box" id="item171">
<!-- nadpis panelu start -->
<div class="content-box-header">
<h3 style="cursor: s-resize;">
<?php echo isset($_GET['id']) ? "Editace komentáře" : "Založení komentáře"; ?>
</h3>
</div>
<!-- nadpis panelu end -->
<!-- obsah panelu start -->
<div class="content-box-content" <?php echo $close; ?>>
<br />
<div id="container-1">
<form method="post" action="" >
<?php //include 'dep_select_box.php'; ?>
<!-- Set class to "column-left" or "column-right" on fieldsets to divide the form into columns -->
<br /><br />
<p>
<label>Text komentáře</label>
<textarea name="obsah_komentare"><?php echo isset($komentar->text) ? $komentar->text : ""; ?></textarea>
<script type="text/javascript">
CKEDITOR.replace( "obsah_komentare",{
} );
</script>
</p> <br /><br />
<div class="clear"></div>
<input type="hidden" name="id" value="<?php echo isset($_GET['id']) ? $_GET['id'] : '' ?>" />
<input type="hidden" name="typ" value="<?php echo isset($_GET['typ']) ? $_GET['typ'] : '' ?>" />
<input type="hidden" name="detail" value="<?php echo isset($_GET['detail']) ? $_GET['detail'] : '' ?>" />
<input class="button" type="submit" name="odeslat" value="Uložit" />
<input class="button" type="submit" name="odeslat_a_zavrit" value="Uložit a zavřít" />
</form>
</div>
</div>
</div>
ACC SHELL 2018