You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							92 lines
						
					
					
						
							4.3 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							92 lines
						
					
					
						
							4.3 KiB
						
					
					
				
								<div class="page-header">
							 | 
						|
								    <h1 class="page-title">FAQ 관리</h1>
							 | 
						|
								</div>
							 | 
						|
								
							 | 
						|
								<div class="row">
							 | 
						|
								
							 | 
						|
								    <div class="col-sm-5">
							 | 
						|
								
							 | 
						|
								        <div class="ax-button-group">
							 | 
						|
								            <div class="left">
							 | 
						|
								                <h4>FAQ 분류</h4>
							 | 
						|
								            </div>
							 | 
						|
								            <div class="right">
							 | 
						|
								                <button type="button" class="btn btn-default" onclick="faq.category.form();"><i class="far fa-plus-circle"></i> 분류 추가</button>
							 | 
						|
								            </div>
							 | 
						|
								        </div>
							 | 
						|
								
							 | 
						|
								        <div class="grid">
							 | 
						|
								            <table>
							 | 
						|
								                <thead>
							 | 
						|
								                <tr>
							 | 
						|
								                    <th class="W20"></th>
							 | 
						|
								                    <th>분류이름</th>
							 | 
						|
								                    <th class="W50">등록</th>
							 | 
						|
								                    <th class="W125">관리</th>
							 | 
						|
								                </tr>
							 | 
						|
								                </thead>
							 | 
						|
								                <tbody data-toggle="sortable" data-key="fac_idx" data-sort="fac_sort" data-table="faq_category">
							 | 
						|
								                <?php foreach($faq_category['list'] as $row) :?>
							 | 
						|
								                    <tr class="<?=isset($fac_idx)&&$fac_idx==$row['fac_idx']?'active':''?>">
							 | 
						|
								                        <td class="text-center"><span class="move-grip"></span><input type="hidden" name="fac_idx[]" value="<?=$row['fac_idx']?>"></td>
							 | 
						|
								                        <td class=""><i class="far <?=isset($fac_idx)&&$fac_idx==$row['fac_idx']?'fa-folder-open':'fa-folder'?>"></i> <a href="<?=base_url('admin/management/faq/'.$row['fac_idx'])?>"><?=$row['fac_title']?></a></td>
							 | 
						|
								                        <td class="text-right W50"><?=number_format($row['fac_count'])?></td>
							 | 
						|
								                        <td class="text-center">
							 | 
						|
								                            <button type="button" class="btn btn-default btn-sm MR5" onclick="faq.category.form('<?=$row['fac_idx']?>');"><i class="far fa-pencil"></i> 수정</button>
							 | 
						|
								                            <button type="button" class="btn btn-danger btn-sm" onclick="faq.category.remove('<?=$row['fac_idx']?>');"><i class="far fa-trash"></i> 삭제</button>
							 | 
						|
								                        </td>
							 | 
						|
								                    </tr>
							 | 
						|
								                <?php endforeach;?>
							 | 
						|
								                <?php if(count($faq_category['list']) == 0) :?>
							 | 
						|
								                    <tr>
							 | 
						|
								                        <td colspan="4" class="empty">등록된 FAQ 분류가 없습니다.</td>
							 | 
						|
								                    </tr>
							 | 
						|
								                <?php endif;?>
							 | 
						|
								                </tbody>
							 | 
						|
								            </table>
							 | 
						|
								        </div>
							 | 
						|
								    </div>
							 | 
						|
								
							 | 
						|
								    <div class="col-sm-7">
							 | 
						|
								        <?php if($fac_idx) :?>
							 | 
						|
								            <div class="ax-button-group">
							 | 
						|
								                <div class="left">
							 | 
						|
								                    <h4>[<?=$faq_group['fac_title']?>] 내용 관리</h4>
							 | 
						|
								                </div>
							 | 
						|
								                <div class="right">
							 | 
						|
								                    <button type="button" class="btn btn-default" onclick="faq.form('<?=$fac_idx?>');"><i class="far fa-plus-circle"></i> FAQ 추가</button>
							 | 
						|
								                </div>
							 | 
						|
								            </div>
							 | 
						|
								
							 | 
						|
								            <div class="grid">
							 | 
						|
								                <table>
							 | 
						|
								                    <thead>
							 | 
						|
								                    <tr>
							 | 
						|
								                        <th class="W20"></th>
							 | 
						|
								                        <th>FAQ 제목</th>
							 | 
						|
								                        <th class="W150">관리</th>
							 | 
						|
								                    </tr>
							 | 
						|
								                    </thead>
							 | 
						|
								                    <tbody data-toggle="sortable" data-key="faq_idx" data-sort="faq_sort" data-table="faq">
							 | 
						|
								                    <?php foreach($faq_list['list'] as $row) :?>
							 | 
						|
								                        <tr>
							 | 
						|
								                            <td class="text-center"><span class="move-grip"></span><input type="hidden" name="faq_idx[]" value="<?=$row['faq_idx']?>"></td>
							 | 
						|
								                            <td><?=$row['faq_title']?></td>
							 | 
						|
								                            <td class="text-center W150">
							 | 
						|
								                                <button type="button" class="btn btn-default btn-sm" onclick="faq.form('<?=$row['fac_idx']?>','<?=$row['faq_idx']?>');"><i class="far fa-pencil"></i> 수정</button>
							 | 
						|
								                                <button type="button" class="btn btn-danger btn-sm" onclick="faq.remove('<?=$row['faq_idx']?>');"><i class="far fa-trash"></i> 삭제</button>
							 | 
						|
								                            </td>
							 | 
						|
								                        </tr>
							 | 
						|
								                    <?php endforeach;?>
							 | 
						|
								                    <?php if(count($faq_list['list']) == 0) :?>
							 | 
						|
								                        <tr>
							 | 
						|
								                            <td colspan="3" class="empty">등록된 FAQ가 없습니다.</td>
							 | 
						|
								                        </tr>
							 | 
						|
								                    <?php endif;?>
							 | 
						|
								                    </tbody>
							 | 
						|
								                </table>
							 | 
						|
								            </div>
							 | 
						|
								        <?php endif;?>
							 | 
						|
								    </div>
							 | 
						|
								
							 | 
						|
								</div>
							 |