source: branches/version-2_5-dev/data/Smarty/templates/admin/contents/csv.tpl @ 19983

Revision 19983, 2.6 KB checked in by Seasoft, 13 years ago (diff)

#834(パスに関わるパラメータ名が不適切)

  • TPL_DIR -> TPL_URLPATH
  • Property svn:eol-style set to LF
  • 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<link rel="stylesheet" href="<!--{$TPL_URLPATH}-->jquery.multiselect2side/css/jquery.multiselect2side.css" type="text/css" media="screen" />
25<script type="text/javascript" src="<!--{$TPL_URLPATH}-->jquery.multiselect2side/js/jquery.multiselect2side.js" ></script>
26<script type="text/javascript">
27<!--
28$().ready(function() {
29    $('#output_list').multiselect2side({
30        selectedPosition: 'right',
31        moveOptions: true,
32        labelsx: 'CSV出力しない項目',
33        labeldx: 'CSV出力する項目',
34        labelTop: '一番上',
35        labelBottom: '一番下',
36        labelUp: '一つ上',
37        labelDown: '一つ下',
38        labelSort: '項目順序'
39    });
40    // multiselect2side の初期選択を解除
41    $('.ms2side__div select').val(null);
42    // [Sort] ボタンは混乱防止のため非表示
43    // FIXME 選択・非選択のボタンと比べて、位置ズレしている
44    $('.ms2side__div .SelSort').hide();
45});
46//-->
47</script>
48
49<form name="form1" id="form1" method="post" action="?">
50<input type="hidden" name="mode" value="confirm" />
51<input type="hidden" name="tpl_subno_csv" value="<!--{$tpl_subno_csv}-->" />
52<div id="admin-contents" class="contents-main">
53    <div class="ms2side__area">
54        <span class="attention"><!--{$arrErr.output_list}--></span>
55        <select multiple name="output_list[]" style="<!--{$arrErr.output_list|sfGetErrorColor}-->;" id="output_list" size="20">
56            <!--{html_options options=$arrOptions selected=$arrSelected}-->
57        </select>
58    </div>
59
60    <div class="btn-area">
61      <ul>
62        <li><a class="btn-action" href="javascript:;" onclick="fnFormModeSubmit('form1', 'confirm', '', ''); return false;"><span class="btn-next">この内容で登録する</span></a></li>
63      </ul>
64    </div>
65
66</div>
67</form>
Note: See TracBrowser for help on using the repository browser.