Git Repository Public Repository

namibia

URLs

Copy to Clipboard
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
<!DOCTYPE HTML>
<html>
	<head>
		<meta charset="UTF-8">
		<title>Bid4Cars</title>
		<link rel="stylesheet" href="css/vendor/bootstrap.css">
		<link rel="stylesheet" href="css/vendor/bootstrap-responsive.css">
		<link rel="stylesheet" href="css/app/valuations.css">
		<link rel="stylesheet" type="text/css" media="only screen and (max-width: 767px), only screen and (max-device-width: 767px)" href="css/app/mobile_valuations.css" />
		<script src="js/vendor/jquery-1.10.1.min.js" type="text/javascript"></script>
		<script src="js/vendor/bootstrap.min.js" type="text/javascript"></script>
		<script src="js/app/form_helpers.js" type="text/javascript"></script>
		<!--[if lt IE 9]>
		<script src="js/vendor/html5shiv.js"></script>
		<![endif]-->
		<meta id="MetaViewport" name="viewport" content="width=device-width">
		<script>
			if( navigator.userAgent.match(/iPhone|Android/i) && !navigator.userAgent.match(/Chrome/) )
				{
					$('#MetaViewport').attr('content', 'width=480px');
				}
		</script>
	</head>
<body>
	<header>
		<div class="hidden-phone header container-fluid">
			<div class="row-fluid header-top">
				<div class="span2 user-details">
					<div id="LoggedIn">
						<p class="detail-label">Logged in as:</p>
						<p>NAME</p>
					</div>
					<div id="LoginId">
						<span class="user-avatar"><img src="imgs/avotar_img.png" alt=""></span>
						<p class="detail-label">Welcome</p>
						<p>Name</p>
					</div>
					<div id="TimeIn">
						<p><span class="detail-label">Time:</span> <span id="Time">11h45</span></p>
					</div>
				</div>
			</div>
			<div class="row-fluid header-bottom">
				<div class="span11 nav-bar">
					<ul class="navbar">
						<li>
							<span class="notification">5</span>
							<a href="">ON AUCTION</a>
						</li>
						<li>
							<span class="notification">5</span>
							<a href="">MY STOCK</a>
						</li>
						<li>
							<span class="notification">5</span>
							<a href="">MY VALUATIONS</a>
						</li>
						<li><a href="">MY SETTINGS</a></li>
						<li><a href="">CONTACT US</a></li>
						<li><a href="">PRICE GUIDE</a></li>
					</ul>
				</div>
				<div class="span1 nav-login">
					<a href="#">LOGOUT</a>
				</div>
			</div>
		</div>
	</header>

	<div class="visible-phone mobile-header container-fluid">
	  <div class="row-fluid mobile-header-top">
	  	<div class="span12 logo">
	    	<button class="btn btn-danger mobile-nav-logout" href="#">LOGOUT</button>
	  	</div>  
	  </div>
	  <div class="row-fluid mobile-header-middle">
	    <div class="span12 mobile-Login">
	      <div class="mobile-detail-label">
	        <p>Logged in as:</p>
	        <p class="logged-in">Name</p>
	      </div>
	      <div class="mobile-time-in">
	        <p><span>Time:</span> <span class="time">11h45</span></p>
	      </div>
	    </div>
	  </div>      
	  <div class="row-fluid mobile-header-bottom">
	    <div class="span12">
	      <h1 class="bottom-heading"></h1>
	      <div class="btn-group drop-down-menu-btn">
	        <a class="btn btn-danger dropdown-toggle mobile-dropdown-btn" data-toggle="dropdown">
	          <img src="imgs/mobile_list_icon.png" alt="">
	          <span class="mobile-caret"></span>
	        </a>
	        <ul class="dropdown-menu pull-right mobi-nav">
	          <img class="drop-down-arrow" src="imgs/drop_down_arrow.png" alt="">
	          <li><a href="">ON AUCTION</a></li>
	          <li><a href="">MY STOCK</a></li>
	          <li><a href="">MY VALUATIONS</a></li>
	          <li><a href="">MY SETTINGS</a></li>
	          <li><a href="">CONTACT US</a></li>
	          <li><a href="">PRICE GUIDE</a></li>
	        </ul>
	      </div>  
	    </div>
	  </div>
	</div>

	<div class="main-section">
		<div class="main container-fluid">
			<div class="row-fluid page-title-wrapper">
				<div class="span7">
					<h1 class="mobile-header-valuation">Valuations</h1>
					<p class="mobile-paragraph">Please use the filters below to narrow down the view</p>
				</div>
				<div class="span5 btn-wrapper export-btn-wrapper mobile-btn-wrapper">
					<button class="hidden-phone btn">
						<i class="icon-export"></i>
						Export information
					</button>
					<button class="btn btn-warning btn-new-valuation mobile-new-valuation">
						<span class="btn-shine mobile-btn-shine"></span>
						<span class="btn-content">
							<i class="icon-new mobile-icon-new"></i>
							New valuation
						</span>
					</button>
				</div>
			</div>
			<div class="row-fluid page-filter-wrapper">
				<div class="hidden-phone span2">
					<div class="btn-group">
						<button class="btn">Group</button>
						<button class="btn dropdown-toggle" data-toggle="dropdown">
							<span class="caret"></span>
						</button>
						<ul class="dropdown-menu">
							<li><a>Option 1</a></li>
							<li><a>Option 2</a></li>
						</ul>
					</div>
					<div class="filter-input">
						<input id="RegistrationNo" type="text" placeholder="Registration number">
					</div>
				</div>
				<div class="span2">
					<div class="btn-group">
						<button class="btn">Division</button>
						<button class="btn dropdown-toggle" data-toggle="dropdown">
							<span class="caret"></span>
						</button>
						<ul class="dropdown-menu">
							<li><a>Option 1</a></li>
							<li><a>Option 2</a></li>
						</ul>
					</div>
					<div class="filter-input">
						<input id="NameOrSurname" type="text" placeholder="Name and/or surname">
					</div>
				</div>
				<div class="span2">
					<p class="context-filter-label">&nbsp;</p>
					<div class="filter-input">
						<input id="RefNo" type="text" placeholder="Ref number">
					</div>
				</div>
				<div class="hidden-phone span4 date-range-inputs">
					<p class="date-label">Date created</p>
					<input id="From" type="text" placeholder="From">
					<input id="To" type="text" placeholder="To">
				</div>
				<div class="hidden-phone span2 btn-wrapper">
					<button class="hidden-phone btn btn-clear-search">
						<i class="icon-remove-circle"></i>
						Clear search
					</button>
					<button class="btn btn-success btn-submit-search">
						<i class="icon-search icon-white"></i>
						Search
					</button>
				</div>
			</div>
			<div class="row-fluid table-form">
				<div class="span12">
					<table class="table mobile-table">
						<tr class="table-header mobile-table-header">
							<div class="table-header-wrapper">
								<th class="vin hidden-phone">
									<div class="table-heading-wrapper">VIN</div>
								</th>
								<th class="make mobile-make">
									<div class="table-heading-wrapper">MAKE
										<a href="">
											<span class="mobile-make-caret make-caret"></span>
										</a>
									</div>
								</th>
								<th class="type hidden-phone">
									<div class="table-heading-wrapper">TYPE</div>
								</th>
								<th class="year hidden-phone">
									<div class="table-heading-wrapper">YEAR</div>
								</th>
								<th class="km hidden-phone">
									<div class="table-heading-wrapper">KM'S</div>
								</th>
								<th class="trade hidden-phone">
									<div class="table-heading-wrapper">TRADE</div>
								</th>
								<th class="retail">
									<div class="table-heading-wrapper">RETAIL</div>
								</th>
								<th class="offer ">
									<div class="table-heading-wrapper">OFFER</div>
								</th>
								<th class="sales hidden-phone">
									<div class="table-heading-wrapper">SALES
										<a class="settings-main-wrapper" href="">
											<img src="imgs/cog_icon.gif" alt="">
											<span class="settings-caret"></span>
										</a>
									</div>
								</th>
								<th class="manager hidden-phone">
									<div class="table-heading-wrapper">MANAGER
										<a class="settings-main-wrapper" href="">
											<img src="imgs/cog_icon.gif" alt="">
											<span class="settings-caret"></span>
										</a>
									</div>
								</th>
								<th class="status">
									<div class="table-heading-wrapper">STATUS
										<a class="settings-main-wrapper" href="">
											<img src="imgs/cog_icon.gif" alt="">
											<span class="settings-caret"></span>
										</a>
									</div>
								</th>
							</div>
						</tr>
						<tr class="form-filters">
							<td class="hidden-phone" id="Vin">
								<div class="filter-input">
									<input type="text">
								</div>
							</td>
							<td id="Make">
								<div class="filter-input">
									<input type="text">
								</div>
							</td>
							<td class="hidden-phone" id="Type">
								<div class="filter-input">
									<input type="text">
								</div>
							</td>
							<td class="hidden-phone" id="Year">
								<div class="filter-input">
									<input type="text">
								</div>
							</td>
							<td class="hidden-phone" id="Km">
								<div class="filter-input">
									<input type="text">
								</div>
							</td>
							<td class="hidden-phone" id="Trade">
								<div class="filter-input">
									<input type="text">
								</div>
							</td>
							<td id="Retail">
								<div class="filter-input">
									<input type="text">
								</div>
							</td>
							<td id="Offer">
								<div class="filter-input">
									<input type="text">
								</div>
							</td>
							<td class="hidden-phone" id="Sales">
								<div class="filter-input">
									<input type="text">
								</div>
							</td>
							<td class="hidden-phone" id="Management">
								<div class="filter-input">
									<input type="text">
								</div>
							</td>
							<td id="Status">
								<div class="filter-input">
									<input type="text">
								</div>
							</td>
						</tr>
						<tbody class="grid">
							<tr>
								<td class="vin hidden-phone">ADM2RV</td>
								<td class="make">Mercades</td>
								<td class="type hidden-phone">
									Viano 3.0 CDI Ambiente(2007-2010)A
								</td>
								<td class="year hidden-phone">2008</td>
								<td class="km hidden-phone">212 300 km</td>
								<td class="trade hidden-phone">R154 000 000</td>
								<td class="retail">R160 000 000</td>
								<td class="offer">R154 000 000
									<span>999</span>
								</td>
								<td class="sales hidden-phone">John</br>Sebatian Vermaak</td>
								<td class="manager hidden-phone">Jenny
									</br>Elizabeth Cornbrink
								</td>
								<td class="status">Deal Not Done</td>
							</tr>
							<tr>
								<td class="vin hidden-phone">ADM2RV</td>
								<td class="make">Mercades</td>
								<td class="type hidden-phone">
									Viano 3.0 CDI Ambiente(2007-2010)A
								</td>
								<td class="year hidden-phone">2008</td>
								<td class="km hidden-phone">212 300 km</td>
								<td class="trade hidden-phone">R154 000 000</td>
								<td class="retail">R160 000 000</td>
								<td class="offer">R154 000 000
									<span>999</span>
								</td>
								<td class="sales hidden-phone">John</br>Sebatian Vermaak</td>
								<td class="manager hidden-phone">Jenny
									</br>Elizabeth Cornbrink
								</td>
								<td class="status">Deal Not Done</td>
							</tr>
						</tbody>
					</table>
				</div>
			</div>
		</div>
	</div>
</body>
</html>

Commits for namibia/public/valuations.html

Diff revisions: vs.
Revision Author Commited Message
df0489 ... Mark Fri 14 Oct, 2016 10:01:00 +0000

initial commit