Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
713 rajveer 1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml">
3
<head>
4
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
5
 
6
<!-- Prevent MS Office toolbar from changing layout -->
7
<meta http-equiv="imagetoolbar" content="false">
8
<meta name="MSSmartTagsPreventParsing" content="true">
9
 
10
<title>Shop2020</title>
11
 
12
<!-- start of new code -->
719 rajveer 13
#include ( "templates/commoncssfiles.vm" )
741 rajveer 14
#include ( "templates/commonjsfiles.vm" )
713 rajveer 15
 
16
</head>
17
 
18
<body>
19
	<noscript>
20
		<p id="noScript">Please allow <em>Javascript</em> in order to function this website correctly!</p>
21
	</noscript>
22
	$action.getHeaderSnippet()			
23
     <!-- Wrapper start -->
24
	<div id="main">
25
		$action.getMainMenuSnippet()
26
		$action.getSearchBarSnippet()
719 rajveer 27
 
28
		<!-- wrapper-->
29
		<div id="wrapper">
30
            <div id="productDetail">
31
              <div class="top">
32
                <div class="left">
33
                  <div class="right"> &nbsp; </div>
34
                </div>
35
              </div>
36
              <div class="middle">
37
                <div class="content">
38
                  <form action="" method="post" name="frmProductDetail" id="frmProductDetail">
39
                    <div class="blockLeft">
40
                      <!-- breadcrumb -->
41
                      <div id="breadcrumb"> <a href="#">Home</a>&nbsp;&gt; <a class="deselect" href="#">Checkout Success</a> </div>
42
                      <!-- /breadcrumb -->
43
                      <h1 id="productHeading">Checkout Success</h1>
44
                    </div>
45
                    <div class="padding_topbottom">&nbsp;</div>
46
                  </form>
47
                  <div class="clearBoth"></div>
48
                </div>
49
              </div>
50
              <div class="bottom">
51
            	<div class="left">
52
            		<div class="right"> &nbsp; </div>
53
            	</div>
54
              </div>
55
            </div>
713 rajveer 56
 
719 rajveer 57
        </div>
58
		<!-- /wrapper-->
59
 
60
 
61
		<!-- sidebar-->
62
		<div id="sidebar">
63
			$action.getCustomerServiceSnippet()
64
		</div>
65
		<div class="clearBoth"></div>
713 rajveer 66
 
67
	<div id="registration">
68
    <div class="top">
69
      <div class="left">
70
        <div class="right"> &nbsp; </div>
71
      </div>
72
    </div>
73
    <div class="middle">
74
      <div class="mid-inner">
75
		<!-- empty cart -->
76
		<div id="emptyCart">
77
			<p>
78
				<strong>$action.getMessage()</strong>
79
			</p>
80
			#set($orders=$action.getOrders())
81
			#if($orders && $orders.size()!=0)
82
			<table>
83
				<thead>
84
					<tr>
85
						<td>Order Number</td>
86
						<td>Item Name</td>
87
						<td>Price</td>
88
						<td>Quantity</td>
89
                    </tr>
90
                </thead>
91
				<tbody>
92
					#foreach($order in $orders)
93
						#set($lineitems =  $order.getLineitems())
94
						#foreach($lineitem in $lineitems)
95
						<tr>
96
							<td>$order.getId()</td>
97
							<td>#if($lineitem.getBrand()) $lineitem.getBrand() #end 
98
								#if($lineitem.getModel_name()) $lineitem.getModel_name() #end 
99
								#if($lineitem.getModel_name())  $lineitem.getModel_name() #end 
100
								#if($lineitem.getColor()) $lineitem.getColor() #end 
101
							</td>
102
							<td>$lineitem.getQuantity()</td>
103
							<td>$lineitem.getTotal_price()</td>				
104
                        </tr>							
105
						#end
106
					#end
107
                </tbody>
108
			</table>
109
			#end
110
 
111
			<br>
112
			<a href="/home">Back to Home</a>
113
		</div>
114
		<!-- /empty cart -->
115
 
116
	  </div>
117
	</div>
118
	<div class="bottom">
119
      <div class="left">
120
        <div class="right"> &nbsp; </div>
121
      </div>
122
    </div>
123
  </div>
124
 
125
   		<div class="clearBoth"></div>
126
    </div><!-- /main -->
127
 
128
	 $action.getFooterSnippet()
129
 
130
</body>
517 rajveer 131
</html>