source: branches/version-2_5-dev/data/Smarty/templates/default/products/review.tpl @ 20408

Revision 20408, 4.8 KB checked in by uemoto, 13 years ago (diff)

#1032(フロントデザインリニューアル)

  • CSSクラス名等調整
  • ヘッダ用ブロック追加

#932(商品をお気に入りに入れたかどうかの判別が動いていない)

  • 取り急ぎ判別のみ実装
  • 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/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
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<!--{include file="`$smarty.const.TEMPLATE_REALDIR`popup_header.tpl" subtitle="お客様の声書き込み(入力ページ)"}-->
25
26  <div id="window_area">
27    <h2 class="title">お客様の声書き込み</h2>
28    <p class="windowtext">以下の商品について、お客様のご意見、ご感想をどしどしお寄せください。<br />
29      「<span class="attention">※</span>」印は入力必須項目です。<br />
30       ご入力後、一番下の「確認ページへ」ボタンをクリックしてください。</p>
31        <form name="form1" method="post" action="?">
32        <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
33        <input type="hidden" name="mode" value="confirm" />
34        <input type="hidden" name="product_id" value="<!--{$arrForm.product_id}-->" />
35        <table summary="お客様の声書き込み">
36          <colgroup width="30%"></colgroup>
37          <colgroup width="70%"></colgroup>
38          <tr>
39            <th>商品名</th>
40            <td><!--{$arrForm.name|h}--></td>
41          </tr>
42          <tr>
43            <th>投稿者名<span class="attention">※</span></th>
44            <td><span class="attention"><!--{$arrErr.reviewer_name}--></span><input type="text" name="reviewer_name" value="<!--{$arrForm.reviewer_name|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" style="<!--{$arrErr.reviewer_name|sfGetErrorColor}-->" class="box350" /></td>
45          </tr>
46          <tr>
47            <th>投稿者URL</th>
48            <td><span class="attention"><!--{$arrErr.reviewer_url}--></span><input type="text" name="reviewer_url" value="<!--{$arrForm.reviewer_url|h}-->" maxlength="<!--{$smarty.const.MTEXT_LEN}-->" style="<!--{$arrErr.reviewer_url|sfGetErrorColor}-->" class="box350" /></td>
49          </tr>
50          <tr>
51            <th>性別</th>
52            <td>
53              <input type="radio" name="sex" id="man" value="1" <!--{if $arrForm.sex eq 1}--> checked="checked"<!--{/if}--> /><label for="man">男性</label>&nbsp;
54              <input type="radio" name="sex" id="woman" value="2" <!--{if $arrForm.sex eq 2}--> checked="checked"<!--{/if}--> /><label for="woman">女性</label>
55            </td>
56          </tr>
57          <tr>
58            <th>おすすめレベル<span class="attention">※</span></th>
59            <td>
60              <span class="attention"><!--{$arrErr.recommend_level}--></span>
61              <select name="recommend_level" style="<!--{$arrErr.recommend_level|sfGetErrorColor}-->">
62                <option value="" selected="selected">選択してください</option>
63                  <!--{html_options options=$arrRECOMMEND selected=$arrForm.recommend_level}-->
64              </select>
65            </td>
66          </tr>
67          <tr>
68            <th>タイトル<span class="attention">※</span></th>
69            <td>
70              <span class="attention"><!--{$arrErr.title}--></span>
71              <input type="text" name="title" value="<!--{$arrForm.title|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" style="<!--{$arrErr.title|sfGetErrorColor}-->" class="box350" />
72            </td>
73          </tr>
74          <tr>
75            <th>コメント<span class="attention">※</span></th>
76            <td>
77              <span class="attention"><!--{$arrErr.comment}--></span>
78              <textarea name="comment" cols="50" rows="10" style="<!--{$arrErr.comment|sfGetErrorColor}-->" class="area350"><!--{$arrForm.comment|h}--></textarea>
79            </td>
80          </tr>
81        </table>
82        <div class="btn_area">
83    <ul>
84        <li><input type="image" onmouseover="chgImgImageSubmit('<!--{$TPL_URLPATH}-->img/button/btn_confirm_on.jpg',this)" onmouseout="chgImgImageSubmit('<!--{$TPL_URLPATH}-->img/button/btn_confirm.jpg',this)" src="<!--{$TPL_URLPATH}-->img/button/btn_confirm.jpg" alt="確認ページへ" name="conf" id="conf" /></li>
85    </ul>
86        </div>
87      </form>
88    </div>
89
90<!--{include file="`$smarty.const.TEMPLATE_REALDIR`popup_footer.tpl"}-->
Note: See TracBrowser for help on using the repository browser.