Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
25988 tejbeer 1
<div class="row">
2
	    	<div class="col-lg-12">
25991 tejbeer 3
	    		<table class="table table-border table-condensed table-bordered" id="lead-table-paginated">
25988 tejbeer 4
	    		<thead>
5
	    				<tr>
6
	    				    <th>Source</th>
7
	    					<th>First Name </th>
8
	    					<th>Last Name</th>
9
	    					<th>Mobile</th>
10
	    					<th>Address</th>
11
	    					<th>City</th>
12
	    					<th>State</th>
13
	    					<th>Created By</th>
14
	    					<th>Status</th>
15
	    					<th>Created On</th>
16
	    					<th>Updated On </th>
17
	    					<th>Assign To </th>
18
	    					<th>view</th>
19
	    				</tr>
20
	    		</thead>
21
	    		<tbody>		
22
	    					#if(!$leads.isEmpty())
23
			    			#foreach( $request in $leads )
24
			    				<tr class="close-lead" data="$request.getId()">
25
			    				#if($request.getSource())
26
			    				<td>$request.getSource()</td>
27
			    				#else
28
			    				<td></td>
29
			    				#end
30
			    				<td>$request.getFirstName()</td>
31
			    				<td>$request.getLastName()</td>
32
			    				<td>$request.getLeadMobile()</td>
33
			    				<td>$request.getAddress()</td>
34
			    				<td>$request.getCity()</td>
35
			    				<td>$request.getState()</td>
36
			    				<td>$request.getCreatedBy()</td>
37
			    				<td>$request.getStatus()</td>
38
			    				<td>$request.getCreatedTimestamp().format($dateTimeFormatter)</td>
39
			    				<td>$request.getUpdatedTimestamp().format($dateTimeFormatter)</td>
40
			    				#if($authIdAndAuthUserMap.get($request.getAssignTo()))
41
			    				<td>$authIdAndAuthUserMap.get($request.getAssignTo()).getFirstName()</td>
42
			    				#else
43
			    				<td></td>
44
			    				#end
45
			    				<td><button class="btn btn-primary view"  data-requestid="$request.getId()" data-toggle="modal" data-target="#fetchLeadActivityData"  type="button" >View</button></td>
46
 
47
			    				</tr>	
48
			    	   #end
49
		    			#else
50
		    				<tr>
51
		    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
52
		    				</tr>
53
		    			#end
54
	    			</tbody>
55
	    		</table>
56
	    	</div>
57
	    </div>