source: branches/version-2_12-multilang/data/Smarty/templates/default_en/shopping/deliv.tpl @ 22175

Revision 22175, 6.4 KB checked in by h_yoshimoto, 11 years ago (diff)

#1996 テキストボタン画像のCSS化を一旦コミット

Line 
1<!--{*
2 * This file is part of EC-CUBE
3 *
4 * Copyright(c) 2000-2012 LOCKON CO.,LTD. All Rights Reserved.
5 *
6 * http://www.lockon.co.jp/
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
21 *}-->
22
23<div id="undercolumn">
24    <div id="undercolumn_shopping">
25        <p class="flow_area">
26            <img src="<!--{$TPL_URLPATH}-->img/picture/img_flow_01.jpg" alt="Flow of purchase procedure" />
27        </p>
28        <h2 class="title"><!--{$tpl_title|h}--></h2>
29
30        <div id="address_area" class="clearfix">
31            <div class="information">
32                <p>Select the delivery address from the list, and click the "Send to the selected delivery destination" button.</p>
33                <!--{if $tpl_addrmax < $smarty.const.DELIV_ADDR_MAX}-->
34                    <p>If you do not find the desired address in the list, add and register it by using "Add new delivery destination".</p>
35                <!--{/if}-->
36                <p class="mini attention">* Up to <!--{$smarty.const.DELIV_ADDR_MAX|h}--> items  can be registered.</p>
37
38            </div>
39            <!--{if $smarty.const.USE_MULTIPLE_SHIPPING !== false}-->
40                <div class="add_multiple">
41                    <p>Will you be sending this product multiple destinations?</p>
42
43                    <a class="bt01" href="javascript:;" onclick="fnModeSubmit('multiple', '', ''); return false">Designate multiple delivery destinations</a>
44                </div>
45            <!--{/if}-->
46        </div>
47
48        <!--{if $tpl_addrmax < $smarty.const.DELIV_ADDR_MAX}-->
49            <p class="addbtn">
50                <a class="bt01" href="<!--{$smarty.const.ROOT_URLPATH}-->mypage/delivery_addr.php" onclick="win02('<!--{$smarty.const.ROOT_URLPATH}-->mypage/delivery_addr.php?page=<!--{$smarty.server.SCRIPT_NAME|h}-->','new_deiv','600','640'); return false;">Add new delivery destination</a>
51            </p>
52        <!--{/if}-->
53
54        <form name="form1" id="form1" method="post" action="?">
55        <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
56        <input type="hidden" name="mode" value="customer_addr" />
57        <input type="hidden" name="uniqid" value="<!--{$tpl_uniqid}-->" />
58        <input type="hidden" name="other_deliv_id" value="" />
59        <!--{if $arrErr.deli != ""}-->
60            <p class="attention"><!--{$arrErr.deli}--></p>
61        <!--{/if}-->
62        <table summary="Designation of delivery destination">
63            <col width="10%" />
64            <col width="20%" />
65            <col width="50%" />
66            <col width="10%" />
67            <col width="10%" />
68            <tr>
69                <th class="alignC">Selection</th>
70                <th class="alignC">Address type</th>
71                <th class="alignC">Delivery destination</th>
72                <th class="alignC">Change</th>
73                <th class="alignC">Delete</th>
74            </tr>
75            <!--{section name=cnt loop=$arrAddr}-->
76                <tr>
77                    <td class="alignC">
78                        <!--{if $smarty.section.cnt.first}-->
79                            <input type="radio" name="deliv_check" id="chk_id_<!--{$smarty.section.cnt.iteration}-->" value="-1" <!--{if $arrForm.deliv_check.value == "" || $arrForm.deliv_check.value == -1}--> checked="checked"<!--{/if}--> />
80                        <!--{else}-->
81                            <input type="radio" name="deliv_check" id="chk_id_<!--{$smarty.section.cnt.iteration}-->" value="<!--{$arrAddr[cnt].other_deliv_id}-->"<!--{if $arrForm.deliv_check.value == $arrAddr[cnt].other_deliv_id}--> checked="checked"<!--{/if}--> />
82                        <!--{/if}-->
83                    </td>
84                    <td class="alignC">
85                        <label for="chk_id_<!--{$smarty.section.cnt.iteration}-->">
86                            <!--{if $smarty.section.cnt.first}-->
87                                Member registration address
88                            <!--{else}-->
89                                Additional registered address
90                            <!--{/if}-->
91                        </label>
92                    </td>
93                    <td>
94                        <!--{assign var=key value=$arrAddr[cnt].pref}-->
95                        <!--{$arrPref[$key]}--><!--{$arrAddr[cnt].addr01|h}--><!--{$arrAddr[cnt].addr02|h}--><br />
96                        <!--{$arrAddr[cnt].name01|h}--> <!--{$arrAddr[cnt].name02|h}-->
97                    </td>
98                    <td class="alignC">
99                        <!--{if !$smarty.section.cnt.first}-->
100                            <a href="<!--{$smarty.const.ROOT_URLPATH}-->mypage/delivery_addr.php" onclick="win02('<!--{$smarty.const.ROOT_URLPATH}-->mypage/delivery_addr.php?page=<!--{$smarty.server.SCRIPT_NAME|h}-->&amp;other_deliv_id=<!--{$arrAddr[cnt].other_deliv_id}-->','new_deiv','600','640'); return false;">Change</a>
101                            <!--{else}-->
102                                -
103                            <!--{/if}-->
104                    </td>
105                    <td class="alignC">
106                        <!--{if !$smarty.section.cnt.first}-->
107                            <a href="?" onclick="fnModeSubmit('delete', 'other_deliv_id', '<!--{$arrAddr[cnt].other_deliv_id}-->'); return false">Delete</a>
108                            <!--{else}-->
109                                -
110                            <!--{/if}-->
111                    </td>
112                </tr>
113            <!--{/section}-->
114        </table>
115
116        <div class="btn_area">
117            <ul>
118                <li>
119                    <a class="bt04" href="<!--{$smarty.const.CART_URLPATH}-->">Go back</a>
120                </li>
121                <li><button class="bt02">Send to the selected delivery destination</button>
122                </li>
123            </ul>
124        </div>
125
126        </form>
127    </div>
128</div>
Note: See TracBrowser for help on using the repository browser.