source: branches/version-2_5-dev/data/Smarty/templates/admin/products/trackback_edit.tpl @ 20116

Revision 20116, 2.8 KB checked in by nanasess, 13 years ago (diff)
  • svn properties を再設定
  • 再設定用のスクリプト追加
  • 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-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?<form name="form1" id="form1" method="post" action="?" >
25<input type="hidden" name="mode" value="complete" />
26<!--{foreach key=key item=item from=$arrTrackback}-->
27<!--{if $key ne "mode"}-->
28<input type="hidden" name="<!--{$key}-->" value="<!--{$item|h}-->" />
29<!--{/if}-->
30<!--{/foreach}-->
31<!--{foreach key=key item=item from=$arrSearchHidden}-->
32<input type="hidden" name="<!--{$key}-->" value="<!--{$item|h}-->" />
33<!--{/foreach}-->
34
35<div id="products" class="contents-main">
36  <h2>トラックバック設定</h2>
37
38<!--▼編集テーブルここから-->
39<table>
40  <tr>
41    <th>商品名</th>
42    <td><!--{$arrTrackback.name|h}--></td>
43  </tr>
44  <tr>
45    <th>ブログ名</th>
46    <td><!--{$arrTrackback.blog_name|h}--></td>
47  </tr>
48  <tr>
49    <th>ブログ記事タイトル</th>
50    <td><!--{$arrTrackback.title|h}--></td>
51  </tr>
52  <tr>
53    <th>ブログ記事内容</th>
54    <td><!--{$arrTrackback.excerpt|h}--></td>
55  </tr>
56  <tr>
57    <th>ブログURL</th>
58    <td><!--{$arrTrackback.url|h}--></td>
59  </tr>
60  <tr>
61    <th>投稿日</th>
62    <td><!--{$arrTrackback.create_date|sfDispDBDate}--></td>
63  </tr>
64  <tr>
65    <th>状態</th>
66    <td>
67    <!--{assign var=key value="status"}-->
68    <span class="attention"><!--{$arrErr.status}--></span>
69    <select name="<!--{$key}-->" style="<!--{$arrErr.status|sfGetErrorColor}-->" >
70    <option value="">選択してください</option>
71    <!--{html_options options=$arrTrackBackStatus selected=$arrTrackback[$key]}-->
72    </select>
73    </td>
74  </tr>
75</table>
76<!--▲編集テーブルここまで-->
77  <div class="btn-area">
78    <ul>
79      <li><a class="btn-action" href="javascript:;" onclick="document.form1.action='./trackback.php'; fnModeSubmit('search','',''); return false;"><span class="btn-prev">検索画面に戻る</span></a></li>
80      <li><a class="btn-action" href="javascript:;" onclick="fnModeSubmit('complete','',''); return false;"><span class="btn-next">この内容で登録する</span></a></li>
81    </ul>
82  </div>
83</div>
84</form>
Note: See TracBrowser for help on using the repository browser.