source: branches/version-2_4/data/Smarty/templates/default/admin/contents/recomend_search.tpl @ 18734

Revision 18734, 5.0 KB checked in by nanasess, 14 years ago (diff)

Copyright の更新(#601)

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