source: branches/comu-utf8/data/Smarty/templates/admin/mail/htmlmail_select.tpl @ 15099

Revision 15099, 4.6 KB checked in by Yammy, 17 years ago (diff)

UTF-8変換済みファイルインポート
1.3.4ベース

Line 
1<!--{*
2/*
3 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
4 *
5 * http://www.lockon.co.jp/
6 */
7*}-->
8<!-- -->
9<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
10<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
11
12<head>
13<meta http-equiv="content-type" content="application/xhtml+xml; charset=<!--{$smarty.const.CHAR_CODE}-->" />
14<meta http-equiv="content-script-type" content="text/javascript" />
15<meta http-equiv="content-style-type" content="text/css" />
16<script type="text/javascript" src="<!--{$smarty.const.URL_DIR}-->js/css.js"></script>
17<script type="text/javascript" src="<!--{$smarty.const.URL_DIR}-->js/navi.js"></script>
18<script type="text/javascript" src="<!--{$smarty.const.URL_DIR}-->js/win_op.js"></script>
19<script type="text/javascript" src="<!--{$smarty.const.URL_DIR}-->js/site.js"></script>
20<script type="text/javascript" src="<!--{$smarty.const.URL_DIR}-->js/admin.js"></script>
21<script type="text/javascript" src="<!--{$smarty.const.URL_DIR}-->js/css.js"></script>
22<script type="text/javascript">
23<!--
24self.moveTo(20,20);self.focus();
25
26function func_submit( id ){
27    var fm = window.opener.document.form1;
28    fm.<!--{$smarty.get.name}-->.value = id;
29    fm.mode.value='select';
30    fm.submit();
31    window.close();
32    return false;
33}
34//-->
35</script>
36<title>ECサイト管理者ページ</title>
37</head>
38
39
40<body bgcolor="#ffffff" text="#666666" link="#007bb7" vlink="#007bb7" alink="#cc0000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
41<noscript>
42<link rel="stylesheet" href="<!--{$smarty.const.URL_ADMIN_CSS}-->common.css" type="text/css" />
43</noscript>
44
45<!--▼CONTENTS-->
46<div align="center">
47 
48<!--▼検索フォーム-->
49<form name="form1" id="form1" method="post" action="<!--{$smarty.server.REQUEST_URI|escape}-->">
50<input name="mode" type="hidden" value="search">
51<input name="search_pageno" type="hidden" value="">
52<table bgcolor="#cccccc" width="420" border="0" cellspacing="1" cellpadding="5" summary=" ">
53    <tr class="fs12n">
54        <td bgcolor="#f0f0f0" width="100">カテゴリ</td>
55        <td bgcolor="#ffffff" width="287"><select name="search_category_id">
56        <option value="" selected="selected">選択してください</option>
57        <!--{html_options options=$arrCatList selected=$arrForm.search_category_id}-->
58        </select>
59        </td>
60    </tr>
61    <tr class="fs12n">
62        <td bgcolor="#f0f0f0">商品名</td>
63        <td bgcolor="#ffffff"><input type="text" name="search_name" value="<!--{$arrForm.search_name}-->" size="35" class="box35" /></td>
64    </tr>
65</table>
66<br />
67<input type="submit" name="subm" value="検索を開始" />
68<br />
69<br />
70
71    <!--▼検索結果表示-->
72    <!--{if $tpl_linemax}-->
73    <table width="420" border="0" cellspacing="0" cellpadding="0" summary=" " bgcolor="#FFFFFF">
74        <tr class="fs12">
75            <td align="left"><!--{$tpl_linemax}-->件が該当しました。 </td>
76        </tr>
77        <tr class="fs12">
78            <td align="center">
79            <!--▼ページナビ-->
80            <!--{$tpl_strnavi}-->
81            <!--▲ページナビ-->
82            </td>
83        </tr>
84        <tr><td height="10"></td></tr>
85    </table>
86       
87    <!--▼検索後表示部分-->
88    <table width="420" border="0" cellspacing="1" cellpadding="5" bgcolor="#cccccc">
89        <tr bgcolor="#f0f0f0" align="center" class="fs12">
90            <td>商品画像</td>
91            <td>商品番号</td>
92            <td>商品名</td>
93            <td>決定</td>
94        </tr>
95        <!--{section name=cnt loop=$arrProducts}-->
96        <!--▼商品<!--{$smarty.section.cnt.iteration}-->-->
97        <tr bgcolor="#FFFFFF" class="fs12n">
98            <td width="90" align="center">
99            <!--{if $arrProducts[cnt].main_list_image != ""}-->
100                <!--{assign var=image_path value="`$smarty.const.IMAGE_SAVE_URL`/`$arrProducts[cnt].main_list_image`"}-->
101            <!--{else}-->
102                <!--{assign var=image_path value="`$smarty.const.NO_IMAGE_URL`"}-->
103            <!--{/if}-->
104            <img src="<!--{$image_path}-->" width="<!--{$smarty.const.DISP_IMAGE_WIDTH}-->" height="<!--{$smarty.const.DISP_IMAGE_HEIGHT}-->" alt="<!--{$arrProducts[cnt].name|escape}-->" />
105            </td>   
106            <td><!--{$arrProducts[cnt].product_code|escape|default:"-"}--></td>
107            <td><!--{$arrProducts[cnt].name|escape}--></td>
108            <td align="center"><a href="" onClick="return func_submit(<!--{$arrProducts[cnt].product_id}-->)">決定</a></td>
109        </tr>
110        <!--▲商品<!--{$smarty.section.cnt.iteration}-->-->
111        <!--{sectionelse}-->
112        <tr bgcolor="#FFFFFF" class="fs10n">
113            <td colspan="4">商品が登録されていません</td>
114        </tr>   
115        <!--{/section}-->
116
117    </table>
118    <!--{/if}-->
119    <!--▲検索結果表示-->
120<table>
121    <tr><td height="20"></td></tr>
122</table>
123</form>
124
125</div>
126<!--▲CONTENTS-->
127</body>
128</html>
Note: See TracBrowser for help on using the repository browser.