AvocadoAmber/AvocadoEdition_Light/skin/qa/basic/view.answer.skin.php

35 lines
976 B
PHP
Raw Normal View History

2022-09-17 20:50:50 +09:00
<?php
2024-09-23 11:45:33 +09:00
if (!defined("_GNUBOARD_"))
exit; // 개별 페이지 접근 불가
2022-09-17 20:50:50 +09:00
?>
<table class="theme-form">
2024-09-23 11:45:33 +09:00
<colgroup>
<col style="width: 100px;" />
<col />
</colgroup>
<tbody>
<tr>
<th>답변</th>
<td><?php echo get_text($answer['qa_subject']); ?></td>
</tr>
<tr>
<td colspan="2">
<!-- 본문 내용 시작 { -->
<div style="min-height: 120px; padding: 10px;">
<?php echo conv_content($answer['qa_content'], $answer['qa_html']); ?>
</div>
<!-- } 본문 내용 -->
</td>
</tr>
</tbody>
2022-09-17 20:50:50 +09:00
</table>
<div id="ans_add" class="txt-center" style="padding: 20px 0;">
2024-09-23 11:45:33 +09:00
<?php if ($answer_update_href) { ?>
<a href="<?php echo $answer_update_href; ?>" class="ui-btn">답변수정</a>
<?php } ?>
<?php if ($answer_delete_href) { ?>
<a href="<?php echo $answer_delete_href; ?>" class="ui-btn admin" onclick="del(this.href); return false;">답변삭제</a>
<?php } ?>
</div>