svnno****@sourc*****
svnno****@sourc*****
2007年 7月 14日 (土) 06:21:34 JST
Revision: 249 http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi?root=pal&view=rev&rev=249 Author: takeharu Date: 2007-07-14 06:21:33 +0900 (Sat, 14 Jul 2007) Log Message: ----------- added html for user operations Added Paths: ----------- pompei/trunk/src/main/webapp/view/user/ pompei/trunk/src/main/webapp/view/user/cart/ pompei/trunk/src/main/webapp/view/user/cart/productList.html pompei/trunk/src/main/webapp/view/user/checkout/ pompei/trunk/src/main/webapp/view/user/checkout/checkoutComplete.html pompei/trunk/src/main/webapp/view/user/checkout/checkoutConfirm.html pompei/trunk/src/main/webapp/view/user/checkout/checkoutEdit.html pompei/trunk/src/main/webapp/view/user/product/ pompei/trunk/src/main/webapp/view/user/product/productDetails.html pompei/trunk/src/main/webapp/view/user/product/productList.html pompei/trunk/src/main/webapp/view/user/search/ pompei/trunk/src/main/webapp/view/user/search/search.html -------------- next part -------------- Added: pompei/trunk/src/main/webapp/view/user/cart/productList.html =================================================================== --- pompei/trunk/src/main/webapp/view/user/cart/productList.html 2007-07-13 21:20:48 UTC (rev 248) +++ pompei/trunk/src/main/webapp/view/user/cart/productList.html 2007-07-13 21:21:33 UTC (rev 249) @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title id="title-head">カート画面</title> +</head> +<body> +<form id="form" method="POST"> +<h2><span id="title">カート情報</span></h2> +<table border="1"> + <thead> + <tr style="dummy" height="20px"> + <th><label>NO</label></th> + <th><label>商品名</label></th> + <th><label>型番</label></th> + <th><label>メーカー</label></th> + <th><label>数量</label></th> + <th><label>価格</label></th> + <th> </th> + </tr> + </thead> + <tbody id="product"> + <tr style="dummy"> + <td><span id="no">1</span></td> + <td><span id="productsName">XXX 01MAX</span></td> + <td><span id="productsModel">MX-XXX</span></td> + <td><span id="manufacturersId">アディダス</span></td> + <td><input size="2" id="count" value="1"/></td> + <td><span id="productsPrice">30,000</span></td> + <td><input type="submit" id="doDelete" value="取消" onclick="alert('カートから削除します。よろしいですか?')"/></td> + </tr> + </tbody> + <tfoot> + <tr> + <td colspan="5" align="right">合計</td> + <td colspan="2">30,000</td> + </tr> + </tfoot> +</table> +<input type="submit" id="doAdd" value="カートを更新する" /> +<br /> +<br /> +<input type="submit" id="doAdd" value="一覧へ戻る" /> +<br /> +<br /> +<input type="submit" id="doAdd" value="注文画面へ" /> +</form> +</body></html> Added: pompei/trunk/src/main/webapp/view/user/checkout/checkoutComplete.html =================================================================== --- pompei/trunk/src/main/webapp/view/user/checkout/checkoutComplete.html 2007-07-13 21:20:48 UTC (rev 248) +++ pompei/trunk/src/main/webapp/view/user/checkout/checkoutComplete.html 2007-07-13 21:21:33 UTC (rev 249) @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title id="title-head">注文受付画面</title> +</head> +<body> +<form id="Form"> +<h2><span id="title">注文受付</span></h2> +<div><span id="messages"></span></div> +<label>注文を受け付けました。<br/>ご注文有難うございました。</label> +<br/> +<br/> +<input type="button" value="トップページへ"/> +</form> +</body></html> \ No newline at end of file Added: pompei/trunk/src/main/webapp/view/user/checkout/checkoutConfirm.html =================================================================== --- pompei/trunk/src/main/webapp/view/user/checkout/checkoutConfirm.html 2007-07-13 21:20:48 UTC (rev 248) +++ pompei/trunk/src/main/webapp/view/user/checkout/checkoutConfirm.html 2007-07-13 21:21:33 UTC (rev 249) @@ -0,0 +1,98 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title id="title-head">注文確認画面</title> +</head> +<body> +<form id="Form"> +<h2><span id="title">注文確認</span></h2> +<div><span id="messages"></span></div> +<table border="1"> +<tr> +<th><label>注文商品</label></th> +<td> +<table border="1"> + <thead> + <tr style="dummy" height="20px"> + <th><label>NO</label></th> + <th><label>商品名</label></th> + <th><label>型番</label></th> + <th><label>メーカー</label></th> + <th><label>数量</label></th> + <th><label>価格</label></th> + </tr> + </thead> + <tbody id="product"> + <tr style="dummy"> + <td><span id="no">1</span></td> + <td><span id="productsName">XXX 01MAX</span></td> + <td><span id="productsModel">MX-XXX</span></td> + <td><span id="manufacturersId">アディダス</span></td> + <td><span id="">1</span></td> + <td><span id="productsPrice">30,000</span></td> + </tr> + </tbody> + <tfoot> + <tr> + <td colspan="5" align="right">小計</td> + <td colspan="2">30,000</td> + </tr> + <tr> + <td colspan="5" align="right">送料</td> + <td colspan="2">1000</td> + </tr> + <tr> + <td colspan="5" align="right">消費税</td> + <td colspan="2">50</td> + </tr> + <tr> + <td colspan="5" align="right">合計</td> + <td colspan="2">31,050</td> + </tr> + </tfoot> +</table> +</td> +</tr> +<tr> +<th><label>お届け先</label></th> +<td> +<table border="1"> + <tr style="dummy" height="20px"> + <th>会社名</th><td><span id="">エヌツーエスエム株式会社</span></td> + </tr> + <tr style="dummy" height="20px"> + <th>部署名</th><td><span id="">技術部</span></td> + </tr> + <tr style="dummy" height="20px"> + <th>郵便番号</th><td><span id="">999</span>-<span id="">9999</span></td> + </tr> + <tr style="dummy" height="20px"> + <th>都道府県</th> + <td><span id="">東京都</span></td> + </tr> + <tr style="dummy" height="20px"> + <th>市区町村</th><td><span id="">豊島区長崎</span></td> + </tr> + <tr style="dummy" height="20px"> + <th>番地</th><td><span id="">1-1-1</span></td> + </tr> + <tr style="dummy" height="20px"> + <th>マンション名など</th><td><span id="">デザイナーズマンション東京</span></td> + </tr> +</table> +</td> +</tr> +<tr> +<th><label>お支払い方法</label></th> +<td><span>代金引換え</span></td> +</tr> +</table> +<br /> +<br /> +<br /> +<input type="submit" id="doAdd" value="注文画面に戻る" onclick="location.href='../product/productList.html'"/> +<input type="submit" id="doAdd" value="注文する" /> +</form> +</body></html> \ No newline at end of file Added: pompei/trunk/src/main/webapp/view/user/checkout/checkoutEdit.html =================================================================== --- pompei/trunk/src/main/webapp/view/user/checkout/checkoutEdit.html 2007-07-13 21:20:48 UTC (rev 248) +++ pompei/trunk/src/main/webapp/view/user/checkout/checkoutEdit.html 2007-07-13 21:21:33 UTC (rev 249) @@ -0,0 +1,138 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title id="title-head">注文画面</title> +</head> +<body> +<form id="Form"> +<h2><span id="title">注文情報入力</span></h2> +<div><span id="messages"></span></div> +<h3><label id="">注文商品</label></h3> +<table border="1"> + <thead> + <tr style="dummy" height="20px"> + <th><label>NO</label></th> + <th><label>商品名</label></th> + <th><label>型番</label></th> + <th><label>メーカー</label></th> + <th><label>数量</label></th> + <th><label>価格</label></th> + </tr> + </thead> + <tbody id="product"> + <tr style="dummy"> + <td><span id="no">1</span></td> + <td><span id="productsName">XXX 01MAX</span></td> + <td><span id="productsModel">MX-XXX</span></td> + <td><span id="manufacturersId">アディダス</span></td> + <td><span id="">1</span></td> + <td><span id="productsPrice">30,000</span></td> + </tr> + </tbody> + <tfoot> + <tr> + <td colspan="5" align="right">小計</td> + <td colspan="2">30,000</td> + </tr> + <tr> + <td colspan="5" align="right">送料</td> + <td colspan="2">1000</td> + </tr> + <tr> + <td colspan="5" align="right">消費税</td> + <td colspan="2">50</td> + </tr> + <tr> + <td colspan="5" align="right">合計</td> + <td colspan="2">31,050</td> + </tr> + </tfoot> +</table> +<hr /> +<h3><label>お届け先</label></h3> +<table> +<tr> +<td valign="top"><input type="radio" name="address"/>登録した届け先を使用</td> +<td> + <select> + <option >届け先を選択して下さい。</option> + <option >会員住所</option> + <option >届け先</option> + </select> + <br/> + <br/> +</td> +</tr> +<tr> +<td valign="top"><input type="radio" name="address"/>個別の届け先を設定</td> +<td> +<table border="1"> + <tr style="dummy" height="20px"> + <th>会社名</th><td><input type="text" id="" /></td> + </tr> + <tr style="dummy" height="20px"> + <th>部署名</th><td><input type="text" id="" /></td> + </tr> + <tr style="dummy" height="20px"> + <th>郵便番号</th><td><input type="text" id="post1" size="3" maxlength="3"/>-<input type="text" id="post2" size="4" maxlength="4"/></td> + </tr> + <tr style="dummy" height="20px"> + <th>都道府県</th> + <td> + <select> + <option value="0"> </option> + <option value="1">東京都</option> + <option value="2">神奈川県</option> + </select> + </td> + </tr> + <tr style="dummy" height="20px"> + <th>市区町村</th><td><input type="text" id="city" size="20" maxlength="40" /></td> + </tr> + <tr style="dummy" height="20px"> + <th>番地</th><td><input type="text" id="street" /></td> + </tr> + <tr style="dummy" height="20px"> + <th>マンション名など</th><td><input type="text" id="pass2" /></td> + </tr> +</table> +</td> +</tr> +</table> + +<hr /> +<h3><label>お支払い方法</label></h3> +<table> +<tr> +<td><input type="radio" name="payment"/>代金引換え</td> +<td>※ここに代金引換に関する説明を表示</td> +</tr> +<tr> +<td><input type="radio" name="payment"/>銀行振込み</td> +<td>※ここに銀行振り込みに関する説明を表示</td> +</tr> +<tr> +<td><input type="radio" name="payment"/>クレジットカード</td> +<td>※ここにクレジットに関する説明を表示</td> +</tr> +<tr> +<td> </td> +<td> + <input type="text" size="2"/> <input type="text" size="2"/><br /> + <input type="text" size="2"/>/<input type="text" size="2"/><br /> + <input type="text" size="2"/><input type="text" size="2"/><input type="text" size="2"/><input type="text" size="2"/><br /> +</td> +</tr> +</table> +<br /> + + +<br /> +<br /> +<br /> +<input type="submit" id="doAdd" value="一覧に戻る" onclick="location.href='../product/productList.html'"/> +<input type="submit" id="doAdd" value="確認画面へ" /> +</form> +</body></html> \ No newline at end of file Added: pompei/trunk/src/main/webapp/view/user/product/productDetails.html =================================================================== --- pompei/trunk/src/main/webapp/view/user/product/productDetails.html 2007-07-13 21:20:48 UTC (rev 248) +++ pompei/trunk/src/main/webapp/view/user/product/productDetails.html 2007-07-13 21:21:33 UTC (rev 249) @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title id="title-head">商品詳細画面</title> +</head> +<body> +<form id="Form"> +<h2><label>商品詳細</label></h2> +<div><span id="messages"></span></div> +<table border="1"> +<tr> +<td colspan="2" align="center"><img src="" style="width:90px;height:120px;" alt="画像" /></td> +</tr> +<tr> +<th><label id="">ID</label></th> +<td><span id="">000012</span></td> +</tr> +<tr> +<th><label id="">名前</label></th> +<td><span id="">AAAAAAA</span></td> +</tr> +<tr> +<th><label id="">型番</label></th> +<td><span id=""> </span></td> +</tr> +<tr> +<th><label id="">メーカー</label></th> +<td><span id=""> </span></td> +</tr> +<tr> +<th><label id="">価格</label></th> +<td><span id=""> </span></td> +</tr> +</table> +<br/> +<input type="submit" id="" value="カートに追加" /> +<input type="submit" id="" value="一覧に戻る" /> +</form> +</body></html> \ No newline at end of file Added: pompei/trunk/src/main/webapp/view/user/product/productList.html =================================================================== --- pompei/trunk/src/main/webapp/view/user/product/productList.html 2007-07-13 21:20:48 UTC (rev 248) +++ pompei/trunk/src/main/webapp/view/user/product/productList.html 2007-07-13 21:21:33 UTC (rev 249) @@ -0,0 +1,274 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title id="title-head">商品一覧画面</title> +</head> +<body> +<h2><span id="title">商品一覧</span></h2> +<form id="Form"> +<div><span id="messages"></span></div> +<label>カテゴリ:</label> +<div id="breadcrumbs" style="display:inline;"> +<a href="productList.html?name=name"><span id="name">靴</span></a> <label>></label> +</div> +<hr/> +<div id="categoryItems"> +<a href="productList.html?name=name"><span id="name">スニーカー</span></a> +</div> +<hr/> +<div style="width:100%;text-align:center;"> +<table width="760px" border="0"> +<tr> +<td width="25%"> + <table border="1"> + <tr> + <td colspan="2" align="center"><img src="" style="width:60px;height:80px;" alt="画像" /></td> + </tr> + <tr> + <th><label id="">名前</label></th> + <td><a href="../product/productDetails.html"><span id="">AAAAAAA</span></a></td> + </tr> + <tr> + <th><label id="">価格</label></th> + <td><span id=""> </span></td> + </tr> + </table> +</td> +<td width="25%"> + <table border="1"> + <tr> + <td colspan="2" align="center"><img src="" style="width:60px;height:80px;" alt="画像" /></td> + </tr> + <tr> + <th><label id="">名前</label></th> + <td><span id="">AAAAAAA</span></td> + </tr> + <tr> + <th><label id="">価格</label></th> + <td><span id=""> </span></td> + </tr> + </table> +</td> +<td width="25%"> + <table border="1"> + <tr> + <td colspan="2" align="center"><img src="" style="width:60px;height:80px;" alt="画像" /></td> + </tr> + <tr> + <th><label id="">名前</label></th> + <td><span id="">AAAAAAA</span></td> + </tr> + <tr> + <th><label id="">価格</label></th> + <td><span id=""> </span></td> + </tr> + </table> +</td> +<td width="25%"> + <table border="1"> + <tr> + <td colspan="2" align="center"><img src="" style="width:60px;height:80px;" alt="画像" /></td> + </tr> + <tr> + <th><label id="">名前</label></th> + <td><span id="">AAAAAAA</span></td> + </tr> + <tr> + <th><label id="">価格</label></th> + <td><span id=""> </span></td> + </tr> + </table> +</td> +</tr> +<tr> +<td width="25%"> + <table border="1"> + <tr> + <td colspan="2" align="center"><img src="" style="width:60px;height:80px;" alt="画像" /></td> + </tr> + <tr> + <th><label id="">名前</label></th> + <td><span id="">AAAAAAA</span></td> + </tr> + <tr> + <th><label id="">価格</label></th> + <td><span id=""> </span></td> + </tr> + </table> +</td> +<td width="25%"> + <table border="1"> + <tr> + <td colspan="2" align="center"><img src="" style="width:60px;height:80px;" alt="画像" /></td> + </tr> + <tr> + <th><label id="">名前</label></th> + <td><span id="">AAAAAAA</span></td> + </tr> + <tr> + <th><label id="">価格</label></th> + <td><span id=""> </span></td> + </tr> + </table> +</td> +<td width="25%"> + <table border="1"> + <tr> + <td colspan="2" align="center"><img src="" style="width:60px;height:80px;" alt="画像" /></td> + </tr> + <tr> + <th><label id="">名前</label></th> + <td><span id="">AAAAAAA</span></td> + </tr> + <tr> + <th><label id="">価格</label></th> + <td><span id=""> </span></td> + </tr> + </table> +</td> +<td width="25%"> + <table border="1"> + <tr> + <td colspan="2" align="center"><img src="" style="width:60px;height:80px;" alt="画像" /></td> + </tr> + <tr> + <th><label id="">名前</label></th> + <td><span id="">AAAAAAA</span></td> + </tr> + <tr> + <th><label id="">価格</label></th> + <td><span id=""> </span></td> + </tr> + </table> +</td> +</tr> +<tr> +<td width="25%"> + <table border="1"> + <tr> + <td colspan="2" align="center"><img src="" style="width:60px;height:80px;" alt="画像" /></td> + </tr> + <tr> + <th><label id="">名前</label></th> + <td><span id="">AAAAAAA</span></td> + </tr> + <tr> + <th><label id="">価格</label></th> + <td><span id=""> </span></td> + </tr> + </table> +</td> +<td width="25%"> + <table border="1"> + <tr> + <td colspan="2" align="center"><img src="" style="width:60px;height:80px;" alt="画像" /></td> + </tr> + <tr> + <th><label id="">名前</label></th> + <td><span id="">AAAAAAA</span></td> + </tr> + <tr> + <th><label id="">価格</label></th> + <td><span id=""> </span></td> + </tr> + </table> +</td> +<td width="25%"> + <table border="1"> + <tr> + <td colspan="2" align="center"><img src="" style="width:60px;height:80px;" alt="画像" /></td> + </tr> + <tr> + <th><label id="">名前</label></th> + <td><span id="">AAAAAAA</span></td> + </tr> + <tr> + <th><label id="">価格</label></th> + <td><span id=""> </span></td> + </tr> + </table> +</td> +<td width="25%"> + <table border="1"> + <tr> + <td colspan="2" align="center"><img src="" style="width:60px;height:80px;" alt="画像" /></td> + </tr> + <tr> + <th><label id="">名前</label></th> + <td><span id="">AAAAAAA</span></td> + </tr> + <tr> + <th><label id="">価格</label></th> + <td><span id=""> </span></td> + </tr> + </table> +</td> +</tr> +<tr> +<td width="25%"> + <table border="1"> + <tr> + <td colspan="2" align="center"><img src="" style="width:60px;height:80px;" alt="画像" /></td> + </tr> + <tr> + <th><label id="">名前</label></th> + <td><span id="">AAAAAAA</span></td> + </tr> + <tr> + <th><label id="">価格</label></th> + <td><span id=""> </span></td> + </tr> + </table> +</td> +<td width="25%"> + <table border="1"> + <tr> + <td colspan="2" align="center"><img src="" style="width:60px;height:80px;" alt="画像" /></td> + </tr> + <tr> + <th><label id="">名前</label></th> + <td><span id="">AAAAAAA</span></td> + </tr> + <tr> + <th><label id="">価格</label></th> + <td><span id=""> </span></td> + </tr> + </table> +</td> +<td width="25%"> + <table border="1"> + <tr> + <td colspan="2" align="center"><img src="" style="width:60px;height:80px;" alt="画像" /></td> + </tr> + <tr> + <th><label id="">名前</label></th> + <td><span id="">AAAAAAA</span></td> + </tr> + <tr> + <th><label id="">価格</label></th> + <td><span id=""> </span></td> + </tr> + </table> +</td> +<td width="25%"> + <table border="1"> + <tr> + <td colspan="2" align="center"><img src="" style="width:60px;height:80px;" alt="画像" /></td> + </tr> + <tr> + <th><label id="">名前</label></th> + <td><span id="">AAAAAAA</span></td> + </tr> + <tr> + <th><label id="">価格</label></th> + <td><span id=""> </span></td> + </tr> + </table> +</td> +</tr> +</table> +</div> +</form> +</body></html> \ No newline at end of file Added: pompei/trunk/src/main/webapp/view/user/search/search.html =================================================================== --- pompei/trunk/src/main/webapp/view/user/search/search.html 2007-07-13 21:20:48 UTC (rev 248) +++ pompei/trunk/src/main/webapp/view/user/search/search.html 2007-07-13 21:21:33 UTC (rev 249) @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title id="title-head">商品検索画面</title> +</head> +<body> +<h2><label>商品検索</label></h2> +<form id="Form"> +<div><span id="messages"></span></div> +<h3><label>検索条件</label></h3> +<table border="0"> +<tr> +<th>カテゴリ</th><td><select><option>指定なし</option></select></td> +<th>メーカー</th><td><select><option>指定なし</option></select></td> +<th>商品名</th><td><input type="text" id="" /></td> +<th>価格</th><td><input type="text" id="" size="5"/>~<input type="text" id="" size="5"/></td> +<td> <input type="button" value="検索"></td> +</tr> +</table> +<hr /> +<h3><label>検索結果</label></h3> +<table border="1"> + <thead> + <tr style="dummy" height="20px"> + <th><label>NO</label></th> + <th><label>商品名</label></th> + <th><label>イメージ</label></th> + <th><label>型番</label></th> + <th><label>メーカー</label></th> + <th><label>価格</label></th> + <th><label>在庫</label></th> + </tr> + </thead> + <tbody id="product"> + <tr style="dummy"> + <td><span id="sortOrder">1</span></td> + <td><a href="../product/productDetails.html"><span id="productsName">XXX 01MAX</span></a></td> + <td><span id="productsImage">画像</span></td> + <td><span id="productsModel">MX-XXX</span></td> + <td><span id="manufacturersId">アディダス</span></td> + <td><span id="productsPrice">30,000</span></td> + <td><span id="productsDateAdded">あり,のこり僅か,なし</span></td> + </tr> + </tbody> + <tfoot></tfoot> +</table> +</form> +</body></html> \ No newline at end of file