Subversion Repositories SmartDukaan

Rev

Rev 27454 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
27875 amit.gupta 1
<div class="modal-header">
2
    <button type="button" class="close" data-dismiss="modal">&times;</button>
3
    <h4 class="modal-title">Offer Detail</h4>
4
</div>
5
 
6
 
7
<div class="modal-body">
8
 	<div style="margin-top: 15px;" class="offer-margin-table">
26674 tejbeer 9
        <div class = "row">
26694 tejbeer 10
          <div class="col-lg-12">
27875 amit.gupta 11
            <div class="row">$offer.getName()</div>
12
			<div class="row">From $offer.getStartDate().format($dateFormatter) to $offer.getEndtDate().format($dateFormatter)</div>
13
			<div class="row">Status - 
14
				<span id="mk_active"> 
15
				#if($offer.isActive())
16
					Active
17
				#else
18
					Inactive (<a href="javascript:void(0)" class="mk_offer_active">Mark active</a>)
19
				#end						
20
				</span>
21
			</div>		
22
             <table class="table  table-advance" id="margin-detail">
23
	             		<thead>
24
		    				<tr>
25
		    				</tr>	
26
					    </thead>
27
		    			<tbody>
28
			    	</tbody>
29
			    </table>
30
	    	  </div>
31
	      	</div>
32
		</div>
33
	</div>
26674 tejbeer 34
 
35
  	<div class="modal-footer">
27875 amit.gupta 36
	<button type="button" data-dismiss="modal" class="btn btn-default cancel-request">Ok</button>
37
</div>