쇼핑몰관리자: 배송업체관리 기본배송지 마크업 및 스타일, submit 버튼 커서 스타일
This commit is contained in:
@ -65,7 +65,8 @@ include_once (G5_ADMIN_PATH.'/admin.head.php');
|
||||
<th scope="row"><label for="dl_default">기본 배송업체</label></th>
|
||||
<td>
|
||||
<?php echo help("기본 배송업체로 선택하면 셀렉트박스에서 이 배송업체가 기본으로 노출됩니다."); ?>
|
||||
<input type="checkbox" name="dl_default" value="1" <?php echo get_checked($dl['dl_default'], '1'); ?>> 기본 배송업체로 선택합니다.
|
||||
<input type="checkbox" name="dl_default" value="1" id="dl_default" <?php echo get_checked($dl['dl_default'], '1'); ?>>
|
||||
<label for="dl_default">기본 배송업체로 선택합니다.</label>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
@ -23,7 +23,6 @@ $result = sql_query($sql);
|
||||
</div>
|
||||
|
||||
<div class="btn_add01 btn_add">
|
||||
■ 는 기본배송업체 표시입니다.
|
||||
<a href="./deliverycodeform.php">배송회사추가</a>
|
||||
</div>
|
||||
|
||||
@ -35,7 +34,7 @@ $result = sql_query($sql);
|
||||
<th scope="col">ID</th>
|
||||
<th scope="col">배송회사명</th>
|
||||
<th scope="col">고객센터</th>
|
||||
<th scope="col">기본배송지</th>
|
||||
<th scope="col">기본<span class="sound_only"> 배송지</span></th>
|
||||
<th scope="col">순서</th>
|
||||
<th scope="col">관리</th>
|
||||
</tr>
|
||||
@ -46,7 +45,7 @@ $result = sql_query($sql);
|
||||
<td class="td_num"><?php echo $row['dl_id']; ?></td>
|
||||
<td><?php echo stripslashes($row['dl_company']); ?></td>
|
||||
<td class="td_numbig"><?php echo $row['dl_tel']; ?></td>
|
||||
<td><?php echo ($row['dl_default']?"■":""); ?></td>
|
||||
<td class="td_mngsmall"><?php echo ($row['dl_default']?"예":""); ?></td>
|
||||
<td class="td_num"><?php echo $row['dl_order']; ?></td>
|
||||
<td class="td_mng">
|
||||
<a href="<?php echo $row['dl_url']; ?>" target="_blank"><span class="sound_only"><?php echo stripslashes($row['dl_company']); ?> </span>사이트</a>
|
||||
|
||||
Reference in New Issue
Block a user