Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
24471 govind 1
<div class="row">
2
	    	<div class="col-lg-12">
3
	    		<table class="table table-bordered">
4
	    			<tbody>
5
	    				<tr>
6
	    					<th>User</th>
7
	    					<th>Category</th>
8
	    					<th>Region</th>
9
	    					<th>Created TimeStamp</th>
10
	    					<th>EscalationType</th>
11
	    					<th>Action</th>
12
	    				</tr>
13
	    				#if(!$positions.isEmpty())
14
	 							#foreach($position in $positions)
15
	 							<tr>
16
	 							<td>$authUserIdAndAuthUserMap.get($position.getAuthUserId()).getFirstName()</td>
17
	 							#if($position.getCategoryId()==0)
18
	 							<td>All Category</td>
19
	 							#else
20
	 							<td>$categoryIdAndCategoryMap.get($position.getCategoryId()).getName()</td>
21
	 							#end
22
	 							#if($position.getRegionId()==0)
23
	 							<td>All Region</td>
24
	 							#else
25
	 							<td>$regionIdAndRegionMap.get($position.getRegionId()).getName()</td>
26
	 							#end
27
	 							<td>$position.getFormattedCreateTimestamp()</td>
28
	 							<td>$position.getEscalationType()</td>
29
	 							<td><button class="btn btn-primary remove-position" data-positionid="$position.getId()">Remove</button></td>
30
			    				</tr>
31
			    				#end
32
			    				#else
33
			    				<tr>
34
		    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
35
		    				</tr>
36
			    				#end
37
	    			</tbody>
38
	    		</table>
39
	    	</div>