source: branches/version-2_5-dev/data/Smarty/templates/default/mypage/favorite.tpl @ 20517

Revision 20517, 3.7 KB checked in by Seasoft, 13 years ago (diff)

#628(未使用処理・定義などの削除)

  • 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
RevLine 
[17451]1<!--{*
2/*
3 * This file is part of EC-CUBE
4 *
[18700]5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
[17451]6 *
7 * http://www.lockon.co.jp/
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22 */
23*}-->
24<div id="mypagecolumn">
[19785]25  <h2 class="title"><!--{$tpl_title|h}--></h2>
[17162]26  <!--{if $tpl_navi != ""}-->
27    <!--{include file=$tpl_navi}-->
28  <!--{else}-->
[19807]29    <!--{include file=`$smarty.const.TEMPLATE_REALDIR`mypage/navi.tpl}-->
[17162]30  <!--{/if}-->
31
[20290]32  <div id="mycontents_area">
[17605]33    <form name="form1" method="post" action="?">
[20407]34    <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
[17162]35    <input type="hidden" name="order_id" value="" />
36    <input type="hidden" name="pageno" value="<!--{$tpl_pageno}-->" />
[19785]37    <h3><!--{$tpl_subtitle|h}--></h3>
[17162]38
39<!--{if $tpl_linemax > 0}-->
40
[20290]41    <p><span class="attention"><!--{$tpl_linemax}-->件</span>のお気に入りがあります。</p>
[17162]42    <div class="paging">
43      <!--▼ページナビ-->
44      <!--{$tpl_strnavi}-->
45      <!--▲ページナビ-->
46    </div>
47
[18069]48    <form name="form1" id="form1" method="post" action="?">
[20407]49    <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
[17162]50    <input type="hidden" name="mode" value="cart" />
51    <input type="hidden" name="product_id" value="" />
[20290]52    <table summary="お気に入り">
53        <colgroup width="15%"></colgroup>
54        <colgroup width="20%"></colgroup>
55        <colgroup width="45%"></colgroup>
56        <colgroup width="20%"></colgroup>
[17162]57      <tr>
[20290]58        <th>削除</th>
59        <th>商品画像</th>
60        <th>商品名</th>
61        <th><!--{$smarty.const.SALE_PRICE_TITLE}-->(税込)</th>
[17162]62      </tr>
63      <!--{section name=cnt loop=$arrFavorite}-->
64      <!--{assign var=product_id value="`$arrFavorite[cnt].product_id`"}-->
65      <tr>
[20290]66       <td class="alignC"><a href="javascript:fnModeSubmit('delete_favorite','product_id','<!--{$product_id|h}-->');">削除</a></td>
67       <td class="alignC"><a href="<!--{$smarty.const.P_DETAIL_URLPATH}--><!--{$product_id|u}-->"><img src="<!--{$smarty.const.ROOT_URLPATH}-->resize_image.php?image=<!--{$arrFavorite[cnt].main_list_image|sfNoImageMainList|h}-->&amp;width=65&amp;height=65"></a></td>
[19943]68       <td><a href="<!--{$smarty.const.P_DETAIL_URLPATH}--><!--{$product_id|u}-->"><!--{$arrFavorite[cnt].name}--></a></td>
[20290]69       <td class="alignR sale_price">
[17162]70        <span class="price">
71          <!--{if $arrFavorite[cnt].price02_min == $arrFavorite[cnt].price02_max}-->
[19680]72            <!--{$arrFavorite[cnt].price02_min|sfCalcIncTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
[17162]73          <!--{else}-->
[19680]74            <!--{$arrFavorite[cnt].price02_min|sfCalcIncTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->~<!--{$arrFavorite[cnt].price02_max|sfCalcIncTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
[17162]75          <!--{/if}-->円</span>
76       </td>
77     </tr>
78     <!--{/section}-->
79    </table>
80    <br />
81    </form>
82
83    <!--{else}-->
84    <p>お気に入りが登録されておりません。</p>
85    <!--{/if}-->
86    </form>
87  </div>
88</div>
Note: See TracBrowser for help on using the repository browser.