source: branches/version-2_12-dev/data/Smarty/templates/admin/system/log.tpl @ 21866

Revision 21866, 2.1 KB checked in by h_yoshimoto, 12 years ago (diff)

#1831 Copyrightを更新を誤っているので戻します

  • 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-2011 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<style type="text/css">
26    th {
27        width: auto;
28    }
29</style>
30
31<!--{if count($arrErr) >= 1}-->
32    <div class="attention">
33        <!--{foreach from=$arrErr item=err}-->
34            <!--{$err}-->
35        <!--{/foreach}-->
36    </div>
37<!--{/if}-->
38
39<form action="?" name="form1" style="margin-bottom: 1ex;">
40    <!--{assign var=key value="log"}-->
41    <select name="<!--{$key|h}-->" style="<!--{$arrErr[$key]|sfGetErrorColor}-->">
42        <!--{html_options options=$arrLogList selected=$arrForm[$key]}-->
43    </select>
44    <!--{assign var=key value="line_max"}-->
45    直近の<input type="text" name="<!--{$key|h}-->" value="<!--{$arrForm[$key].value|h}-->" size="6" maxlength="<!--{$arrForm[$key].length|h}-->" style="<!--{$arrErr[$key]|sfGetErrorColor}-->" />行
46    <a class="btn-normal" href="javascript:;" onclick="form1.submit(); return false;"><span>読み込む</span></a>
47</form>
48
49<table class="list log">
50    <tr>
51        <th>日時</th>
52        <th>パス</th>
53        <th>内容</th>
54    </tr>
55    <!--{foreach from=$tpl_ec_log item=line}-->
56        <tr>
57            <td class="date"><!--{$line.date|h}--></td>
58            <td class="path"><!--{$line.path|h}--></td>
59            <td class="body"><!--{$line.body|h|nl2br}--></td>
60        </tr>
61    <!--{/foreach}-->
62</table>
Note: See TracBrowser for help on using the repository browser.