Subversion Repositories SmartDukaan

Rev

Rev 33915 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
28847 manish 1
<link href="https://cdn.datatables.net/fixedcolumns/3.3.0/css/fixedColumns.bootstrap.css" rel="stylesheet"/>
2
 
3
<section class="wrapper">
4
    <div class="row">
5
        <div class="col-lg-12">
33908 tejus.loha 6
            <h3 class="page-header">DMS CODE</h3>
28847 manish 7
            <ol class="breadcrumb">
8
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
9
                <li><i class="icon_document_alt"></i>DMS Code</li>
10
            </ol>
11
        </div>
12
    </div>
13
    <div class="col-lg-12">
14
        <table class="table table-border table-condensed table-bordered" id="partnerDealerMapping" style="width:100%">
15
 
16
            <thead class="row htable" style="background:#F5F5F5;">
17
 
18
            <tr style="color:black;">
19
                <th>Id</th>
33908 tejus.loha 20
                <th>Outlet Name</th>
21
                <th>Phone Number</th>
22
                <th>City</th>
23
                <th>Code</th>
28847 manish 24
                #foreach($brand  in $brands)
25
                <th>$brand</th>
26
                #end
33908 tejus.loha 27
                <th>Commitments</th>
28847 manish 28
                 <th>Submit</th>
29
            </tr>
30
            </thead>
31
            <tbody>
32
 
33
           #foreach($pob in $partnerOnBoardingPanels )
34
 
28901 manish 35
            #if($pob.getHoldTimestamp())
36
             <tr class="dealer-mapping-hold"> 
37
 
28862 manish 38
            #parse("partner-dealer-mapping-index.vm")
28847 manish 39
 
40
            </tr> 
28901 manish 41
            #else
42
            <tr> 
43
 
44
            #parse("partner-dealer-mapping-index.vm")
45
 
46
            </tr> 
28847 manish 47
            #end
48
 
49
 
28901 manish 50
 
51
            #end
52
 
53
 
28847 manish 54
            </tbody>
55
 
56
        </table>
57
    </div>
58
</section>
59
 
33908 tejus.loha 60
<div class="modal fade" id="nocUploadModal" role="dialog">
61
    <div class="modal-dialog modal-lg" style="max-width: 85%; width: auto;">
62
        <!-- Modal content-->
63
        <div class="modal-content">
64
            <div class="modal-header">
65
                <button type="button" class="close" data-dismiss="modal">&times;</button>
66
            </div>
67
            <div class="modal-body" style="width: 100% ;align-items: center">
68
                <div id="nocUploadBody">
69
                    ## dynemic model bodies
70
                </div>
71
            </div>
72
            <div class="modal-footer">
73
                <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
74
            </div>
75
        </div>
76
 
77
    </div>
78
</div>
79
 
28847 manish 80
<script type="text/javascript">
33927 tejus.loha 81
    $('#partnerDealerMapping').DataTable({
82
        "order": [[0, 'desc']]
83
    });
33915 tejus.loha 84
   </script>   
28847 manish 85
 
86
 
87