source: branches/feature-module-update/data/Smarty/templates/default/admin/ownersstore/products_list.tpl @ 16891

Revision 16891, 3.6 KB checked in by adachi, 16 years ago (diff)

リンク修正

Line 
1<table width="678" border="0" cellspacing="1" cellpadding="4" summary=" ">
2    <tr bgcolor="#f2f1ec" align="center" class="fs12n">
3        <td width="">ロゴ</td>
4        <td width="">名称</td>
5        <td width="">導入バージョン</td>
6        <td width="">ダウンロード</td>
7        <td width="">設定</td>
8        <td width="">ステータス</td>
9    </tr>
10<!--{foreach from=$arrProducts item=product name=products_list_loop}-->
11    <tr bgcolor="#ffffff" class="fs12">
12        <td align="center">
13            <a href="<!--{$smarty.const.OSTORE_URL}-->products/detail.php?product_id=<!--{$product.product_id|escape}-->"
14               target="_blank">
15                <img src="<!--{$smarty.const.OSTORE_SSLURL}-->upload/save_image/<!--{$product.main_list_image|escape}-->" width="50" height="50">
16            </a>
17        </td>
18        <td align="center">
19            <p>
20                <a href="<!--{$smarty.const.OSTORE_URL}-->products/detail.php?product_id=<!--{$product.product_id|escape}-->" target="_blank">
21                    <!--{$product.name}-->
22                </a>
23            </p>
24            <p>Version.<!--{$product.version|default:"--"}--> <!--{$product.last_update_date|sfDispDBDate:false|escape}--></p>
25        </td>
26        <td align="center"><!--{$product.installed_version|default:"--"|escape}--></td>
27       
28        <!--{* ダウンロード対象商品 かつ 受注ステータスが「入金済み」なら各種ボタンを表示する *}-->
29        <!--{if $product.download_flg}-->
30       
31        <td align="center">
32            <div id="ownersstore_download">
33            <!--{* インストール済み かつ 新バージョンが公開している場合 はアップデートボタン表示 *}-->
34            <!--{if $product.installed_flg && $product.version_up_flg}-->
35                <span class="icon_confirm">
36                <a href="" onclick="OwnersStore.download(<!--{$product.product_id|escape}-->);return false;">アップデート</a>
37                </span>
38            <!--{* 未インストールならインストールボタン表示 *}-->
39            <!--{elseif !$product.installed_flg}-->
40                <span class="icon_confirm">
41                <a href="" onclick="OwnersStore.download(<!--{$product.product_id|escape}-->);return false;">インストール</a>
42                </span>
43            <!--{else}-->
44                --
45            <!--{/if}-->
46            </div>
47        </td>
48           
49        <td align="center">
50            <!--{* インストール済みなら設定ボタン表示 *}-->
51            <!--{if $product.installed_flg}-->
52                <span class="icon_confirm">
53                <a href="" onclick="win02('../load_module_config.php?module_id=<!--{$product.product_id}-->', 'load', 600, 400);return false;">
54                   設定
55                </a>
56                </span>
57            <!--{else}-->
58                <div id='ownersstore_settings' style="display:none">
59                <span class="icon_confirm">
60                <a href="" onclick="win02('../load_module_config.php?module_id=<!--{$product.product_id}-->', 'load', 600, 400);return false;">
61                   設定
62                </a>
63                </span>
64                </div>
65                <div id='ownersstore_settings_default' style="display:bloc">--</div>
66            <!--{/if}-->
67        </td>
68
69        <!--{else}-->
70       
71        <td align="center">--</td>
72        <td align="center">--</td>
73        <!--{/if}-->
74       
75        <td align="center"><!--{$product.status|escape|nl2br}--></td>
76    </tr>
77<!--{/foreach}-->
78</table>
Note: See TracBrowser for help on using the repository browser.