source: branches/version-2_5-dev/data/Smarty/templates/sphone/shopping/multiple.tpl @ 20614

Revision 20614, 6.0 KB checked in by nagano, 13 years ago (diff)

モバイル・スマートフォンのデザイン調整

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-smarty-template; charset=UTF-8
Line 
1<!--{*
2 * This file is part of EC-CUBE
3 *
4 * Copyright(c) 2000-2010 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<!--▼CONTENTS-->
23<script type="text/javascript" src="<!--{$smarty.const.ROOT_URLPATH}-->js/jquery.fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
24<script type="text/javascript" src="<!--{$smarty.const.ROOT_URLPATH}-->js/jquery.fancybox/jquery.fancybox-1.3.4.pack.js"></script>
25<link rel="stylesheet" href="<!--{$smarty.const.ROOT_URLPATH}-->js/jquery.fancybox/jquery.fancybox-1.3.4.css" type="text/css" media="screen" />
26<script type="text/javascript">//<![CDATA[
27    $(document).ready(function() {
28        $("a.expansion").fancybox({
29        });
30    });
31//]]></script>
32<div id="under02column">
33    <div id="under02column_shopping">
34        <h2 class="title"><!--{$tpl_title|h}--></h2>
35
36        <p>各商品のお届け先を選択してください。</p>
37        <!--{if $tpl_addrmax < $smarty.const.DELIV_ADDR_MAX}-->
38            <p>一覧にご希望の住所が無い場合は、「新しいお届け先を追加する」より追加登録してください。</p>
39        <!--{/if}-->
40        <p>※最大<!--{$smarty.const.DELIV_ADDR_MAX|h}-->件まで登録できます。</p>
41
42        <!--{if $tpl_addrmax < $smarty.const.DELIV_ADDR_MAX}-->
43            <p class="addbtn">
44                <a class="kybtn" href="<!--{$smarty.const.ROOT_URLPATH}-->mypage/delivery_addr.php">新しいお届け先を追加する</a>
45            </p>
46        <!--{/if}-->
47        <form name="form1" id="form1" method="post" action="?">
48            <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
49            <input type="hidden" name="uniqid" value="<!--{$tpl_uniqid}-->" />
50            <input type="hidden" name="mode" value="confirm" />
51                <!--{foreach from=$items item=item name=cartItem}-->
52                <table summary="商品情報" class="entryform">
53                <tr>
54                    <th class="multi_ph">商品写真</th>
55                    <th class="multi_pr">商品名</th>
56                    <th class="multi_nu">数量</th>
57                </tr>
58                    <!--{assign var=index value=$smarty.foreach.cartItem.index}-->
59                    <tr style="<!--{if $item.error}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->">
60                        <td class="phototd">
61                        <a
62                            <!--{if $item.main_image|strlen >= 1}-->
63                                href="<!--{$smarty.const.IMAGE_SAVE_URLPATH}--><!--{$item.main_image|sfNoImageMainList|h}-->"
64                                class="expansion"
65                                target="_blank"
66                            <!--{/if}-->
67                        >
68                            <img src="<!--{$smarty.const.ROOT_URLPATH}-->resize_image.php?image=<!--{$item.main_list_image|sfNoImageMainList|h}-->&amp;width=65&amp;height=65" alt="&lt;!--{$item.productsClass.name|h}--&gt;" /></a>
69                        </td>
70                        <td class="multi_pr"><!--{* 商品名 *}--><strong><!--{$item.name|h}--></strong><br />
71                            <!--{if $item.classcategory_name1 != ""}-->
72                                <!--{$item.class_name1}-->:<!--{$item.classcategory_name1}--><br />
73                            <!--{/if}-->
74                            <!--{if $item.classcategory_name2 != ""}-->
75                                <!--{$item.class_name2}-->:<!--{$item.classcategory_name2}--><br />
76                            <!--{/if}-->
77                            <!--{$item.price02|sfCalcIncTax:$arrInfo.tax:$arrInfo.tax_rule|number_format}-->円
78                        </td>
79                        <td class="multi_nu">
80                          <input class="multi_nu" type="hidden" name="cart_no<!--{$index}-->" value="<!--{$index}-->" />
81                          <input class="multi_nu" type="hidden" name="product_class_id<!--{$index}-->" value="<!--{$item.product_class_id}-->" />
82                          <!--{assign var=key value="quantity`$index`"}-->
83                          <input class="multi_nu" type="text" name="<!--{$key}-->" value="<!--{$arrForm[$key].value}-->" size="4" />
84                        </td>
85                     </tr>
86                    <tr style="<!--{if $item.error}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->">
87                      <td colspan="3"class="multi_send">お届け先</td>
88                    </tr>
89                    <tr style="<!--{if $item.error}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->">
90                      <td colspan="3"><!--{assign var=key value="shipping`$index`"}-->
91                          <select name="<!--{$key}-->"><!--{html_options options=$addrs selected=$arrForm[$key].value}--></select></td>
92                    </tr>
93                   </table><br />
94                  <!--{/foreach}-->
95
96            <div class="tblareabtn">
97                      <a href="<!--{$smarty.const.CART_URLPATH}-->" class="spbtn spbtn-medeum">
98                    戻る</a>&nbsp;
99                 <input type="submit" value="選択したお届け先に送る" class="spbtn spbtn-shopping" width="130" height="30" alt="選択したお届け先に送る" name="send_button" id="next" />
100            </div>
101        </form>
102    </div>
103</div>
Note: See TracBrowser for help on using the repository browser.