Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
24317 govind 1
 #if($addedBrands.size()>0)
2
 <table class="table table-bordered" id="added-brand" style="width:20%">
3
	    			<thead>
4
	    				<tr>
5
	    					<th>Brand</th>
6
	    					<th>Action</th>
7
	    				</tr>
8
	    				</thead>
9
	    				<tbody>
10
			    			#foreach( $addedBrand in $addedBrands)
11
			    				<tr>
12
			    				<td>$addedBrand</td>
13
			    				<td><a href="#" data-id="$serviceId" data-brand="$addedBrand" id="remove-added-brand-button">Remove</td>
14
			    				</tr>
15
			    			#end
16
	    			</tbody>
17
	    		</table>
18
#end