source: branches/comu-ver2/data/Smarty/templates/default/admin/mail/htmlmail_confirm.tpl @ 17351

Revision 17351, 4.1 KB checked in by pineray, 16 years ago (diff)
  • Property svn:eol-style set to LF
  • Property svn:mime-type set to text/html; charset=UTF-8
Line 
1<!--{*
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2008 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<form name="form1" id="form1" method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->">
25<input type="hidden" name="mode" value="complete" />
26<!--$arrForm-->
27<!--{foreach key=key item=item from=$arrForm}-->
28<!--{if $key != "mode"}-->
29<input type="hidden" name="<!--{$key}-->" value="<!--{$item|escape}-->" />
30<!--{/if}-->
31<!--{/foreach}-->
32
33<!--$arrHidden-->
34<!--{foreach key=key item=item from=$arrHidden}-->
35  <input type="hidden" name="<!--{$key}-->" value="<!--{$item|escape}-->" />
36<!--{/foreach}-->
37
38<div id="main" class="contents-main">
39  <h2>HTMLメール作成</h2>
40  <table>
41    <tr>
42      <th>Subject<span class="attention"> *</span></th>
43      <td><!--{$arrForm.subject|escape}--></td>
44    </tr>
45    <tr>
46      <th>メール担当写真<span class="attention"> *</span></th>
47      <td>
48      <!--{assign var=key value="charge_image"}-->
49      <!--{if $arrFile[$key].filepath != ""}-->
50      <img src="<!--{$arrFile[$key].filepath}-->" width="<!--{$arrFile[$key].width}-->" height="<!--{$arrFile[$key].height}-->" />
51      <!--{/if}-->
52      </td>
53    </tr>
54    <tr>
55      <th>ヘッダーテキスト<span class="attention"> *</span></th>
56      <td><!--{$arrForm.header|escape|nl2br}--></td>
57    </tr>
58    <tr>
59      <th>メイン商品タイトル<span class="attention"> *</span></th>
60      <td><!--{$arrForm.main_title|escape}--></td>
61    </tr>
62    <tr>
63      <th>メイン商品コメント<span class="attention"> *</span></th>
64      <td><!--{$arrForm.main_comment|escape}--></td>
65    </tr>
66    <tr>
67      <th>メイン商品選択<span class="attention"> *</span></th>
68      <td>
69      <img src="<!--{$smarty.const.IMAGE_SAVE_URL|escape}--><!--{$arrFileName[0].main_image}-->" alt="メイン商品画像" /><br />
70      <input type="text" name="name_main_product" value="<!--{$arrFileName[0].name|escape}-->" disabled="disabled"  size="65" class="box65" style="background:#FFF;border-style:solid;border-color:#FFF;" />
71      </td>
72    </tr>
73    <tr>
74      <th>サブ商品群タイトル<span class="attention"> *</span></th>
75      <td><!--{$arrForm.sub_title|escape}--></td>
76    </tr>
77    <tr>
78      <th>サブ商品群コメント<span class="attention"> *</span></th>
79      <td><!--{$arrForm.sub_comment|escape|nl2br}--></td>
80    </tr>
81    <!--{foreach key=key item=item from=$arrSub.delete}-->
82    <tr>
83      <th>商品画像(<!--{$key}-->)</th>
84      <td>
85        <!--{if $arrFileName[$key].main_image != "" && $item != 'on'}-->
86        <!--{assign var=image_path value="`$smarty.const.IMAGE_SAVE_URL`/`$arrFileName[$key].main_image`"}-->
87        <img src="<!--{$image_path}-->" width="<!--{$smarty.const.SMALL_IMAGE_WIDTH}-->" height="<!--{$smarty.const.SMALL_IMAGE_HEIGHT}-->" alt="商品画像<!--{$smarty.section.cnt.iteration}-->" /><br />
88        <input type="text" name="name_sub_product" value="<!--{$arrFileName[$key].name|escape}-->" disabled="disabled"  size="65" class="box65" style="background:#FFF;border-style:solid;border-color:#FFF;" />
89        <!--{else}-->未登録<!--{/if}-->
90      </td>
91    </tr>
92    <!--{/foreach}-->
93  </table>
94
95  <div class="btn">
96    <button type="button" onclick="fnModeSubmit('return', '', ''); return false;"><span>前のページに戻る</span></button>
97    <button type="submit"><span>この内容で登録する</span></button>
98  </div>
99</div>
100</form>
Note: See TracBrowser for help on using the repository browser.