Subversion Repositories SmartDukaan

Rev

Rev 33927 | 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>
34099 tejus.loha 13
    <div id="download-pdm-report-container" style="float: right;border:thin;margin-right: 30px">
14
        <div>
15
            <select name="brandName" style="width: 110px ; height: 26px;margin-right: 10px">
16
                <option value="" disabled selected>Select Brand</option>
17
                #foreach($brand in $brands)
18
                    <option value="$brand">$brand</option>
19
                #end
20
            </select>
21
            <button type="button" class="btn-success" id="download-pdm-report">Download Report</button>
22
        </div>
23
    </div>
28847 manish 24
    <div class="col-lg-12">
25
        <table class="table table-border table-condensed table-bordered" id="partnerDealerMapping" style="width:100%">
26
 
27
            <thead class="row htable" style="background:#F5F5F5;">
28
 
29
            <tr style="color:black;">
30
                <th>Id</th>
33908 tejus.loha 31
                <th>Outlet Name</th>
32
                <th>Phone Number</th>
33
                <th>City</th>
34
                <th>Code</th>
28847 manish 35
                #foreach($brand  in $brands)
36
                <th>$brand</th>
37
                #end
33908 tejus.loha 38
                <th>Commitments</th>
28847 manish 39
                 <th>Submit</th>
40
            </tr>
41
            </thead>
42
            <tbody>
43
 
44
           #foreach($pob in $partnerOnBoardingPanels )
45
 
28901 manish 46
            #if($pob.getHoldTimestamp())
47
             <tr class="dealer-mapping-hold"> 
48
 
28862 manish 49
            #parse("partner-dealer-mapping-index.vm")
28847 manish 50
 
51
            </tr> 
28901 manish 52
            #else
53
            <tr> 
54
 
55
            #parse("partner-dealer-mapping-index.vm")
56
 
57
            </tr> 
28847 manish 58
            #end
59
 
60
 
28901 manish 61
 
62
            #end
63
 
64
 
28847 manish 65
            </tbody>
66
 
67
        </table>
68
    </div>
69
</section>
70
 
33908 tejus.loha 71
<div class="modal fade" id="nocUploadModal" role="dialog">
72
    <div class="modal-dialog modal-lg" style="max-width: 85%; width: auto;">
73
        <!-- Modal content-->
74
        <div class="modal-content">
75
            <div class="modal-header">
76
                <button type="button" class="close" data-dismiss="modal">&times;</button>
77
            </div>
78
            <div class="modal-body" style="width: 100% ;align-items: center">
79
                <div id="nocUploadBody">
80
                    ## dynemic model bodies
81
                </div>
82
            </div>
83
            <div class="modal-footer">
84
                <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
85
            </div>
86
        </div>
87
 
88
    </div>
89
</div>
90
 
28847 manish 91
<script type="text/javascript">
33927 tejus.loha 92
    $('#partnerDealerMapping').DataTable({
93
        "order": [[0, 'desc']]
94
    });
33915 tejus.loha 95
   </script>   
28847 manish 96
 
97
 
98