29 lines
1.7 KiB
PHP
29 lines
1.7 KiB
PHP
<?php import::view(THEMA_NAME.'assets/header'); ?>
|
|
<div class="my-3 my-md-5">
|
|
<div class="container">
|
|
<div class="card">
|
|
<div class="card-header"><h4><?php echo translate('edit')." > ".forum_content_row($id)->title; ?></h4> </div>
|
|
<div class="card-body">
|
|
<form method="post">
|
|
<fieldset class="form-fieldset">
|
|
<div class="form-group">
|
|
<label class="form-label"><?php echo translate('title') ?><span class="form-required">*</span></label>
|
|
<input type="text" name="title" value="<?php echo forum_content_row($id)->title ?>" class="form-control" >
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="form-label"><?php echo translate('content') ?><span class="form-required">*</span></label>
|
|
<textarea name="content" class="form-control" id="editor" rows="10">
|
|
<?php decode(forum_content_row($id)->content); ?>
|
|
</textarea>
|
|
</div>
|
|
</fieldset>
|
|
<input type="hidden" name="id" value="<?php echo $id ?>">
|
|
<input type="hidden" name="content_id" value="<?php echo $id; ?>">
|
|
<input type="hidden" name="link" value="question_answer/subject/<?php echo $id1.'-'.seo(forum_content_row($id)->title); ?>">
|
|
<button type="submit" class="btn btn-primary btn-block"> KAYDET</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php import::view(THEMA_NAME.'assets/footer'); ?>
|