Subversion Repositories SmartDukaan

Rev

Rev 35499 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35499 Rev 35517
Line 70... Line 70...
70
    <div class="row">
70
    <div class="row">
71
        <div class="col-lg-12">
71
        <div class="col-lg-12">
72
            <h3 class="page-header"><i class="icon_document_alt"></i>Trial Partner</h3>
72
            <h3 class="page-header"><i class="icon_document_alt"></i>Trial Partner</h3>
73
            <ol class="breadcrumb">
73
            <ol class="breadcrumb">
74
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
74
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
75
                <li><i class="icon_document_alt"></i> Trial Partner Req page</li>
75
                <li><i class="icon_document_alt"></i>All Trial Partner page</li>
76
            </ol>
76
            </ol>
77
        </div>
77
        </div>
78
    </div>
78
    </div>
79
 
79
 
-
 
80
    <div class="col-md-4 p-2">
-
 
81
        <label class="form-label">Select Status</label>
-
 
82
        <select name="status" class="form-select tstatus">
-
 
83
            <option value="">Select Status</option>
-
 
84
            #foreach($st in $status)
-
 
85
                <option value="$st.name()"
-
 
86
                    #if($selectedStatus && $selectedStatus.name() == $st.name())
-
 
87
                        selected
-
 
88
                    #end
-
 
89
                >
-
 
90
                    $st.name()
-
 
91
                </option>
-
 
92
            #end
-
 
93
        </select>
-
 
94
    </div>
-
 
95
 
80
 
96
 
81
    <div class="row">
97
    <div class="row">
82
        <div class="col-lg-12">
98
        <div class="col-lg-12">
83
            <table class="table table-border table-condensed table-bordered" id="trial-users">
99
            <table class="table table-border table-condensed table-bordered" id="trial-users">
84
                <thead>
100
                <thead>
Line 94... Line 110...
94
                    <th>Pin Code</th>
110
                    <th>Pin Code</th>
95
                    <th>Pan Document</th>
111
                    <th>Pan Document</th>
96
                    <th>Aadhaar Document</th>
112
                    <th>Aadhaar Document</th>
97
                    <th>Shop Images</th>
113
                    <th>Shop Images</th>
98
                    <th>Status</th>
114
                    <th>Status</th>
-
 
115
                    <th>Remark</th>
99
                </tr>
116
                </tr>
100
                </thead>
117
                </thead>
101
                <tbody>
118
                <tbody>
102
                    #if($trialForms.size() > 0)
119
                    #if($trialForms.size() > 0)
103
                        #foreach( $trialForm in $trialForms )
120
                        #foreach( $trialForm in $trialForms )
Line 129... Line 146...
129
                                </a>
146
                                </a>
130
                                <a href="#" class="lightbox" id="aadhaar-id$trialForm.getId()">
147
                                <a href="#" class="lightbox" id="aadhaar-id$trialForm.getId()">
131
                                    <span style="background-image:url('${rc.contextPath}/download-attachment?documentId=$trialForm.getAadhaarDocumentId()')"></span>
148
                                    <span style="background-image:url('${rc.contextPath}/download-attachment?documentId=$trialForm.getAadhaarDocumentId()')"></span>
132
                                </a>
149
                                </a>
133
                            </td>
150
                            </td>
134
                            <td>
151
                            <td class="text-center">
135
                                #set($shopImages = $trialForm.getShopImageDocumentIds())
152
                                #set($shopImages = $trialForm.getShopImageDocumentIds())
136
 
153
 
137
                                #if($shopImages && $shopImages.size() > 0)
154
                                #if($shopImages && $shopImages.size() > 0)
138
                                    #foreach($docId in $shopImages)
155
                                    #foreach($docId in $shopImages)
139
                                        <a href="#shop-img-$docId-$trialForm.getId()">
156
                                        <a href="#shop-img-$docId-$trialForm.getId()">
Line 144... Line 161...
144
                                        <a href="#" class="lightbox" id="shop-img-$docId-$trialForm.getId()">
161
                                        <a href="#" class="lightbox" id="shop-img-$docId-$trialForm.getId()">
145
                                            <span style="background-image:url('${rc.contextPath}/download-attachment?documentId=$docId')"></span>
162
                                            <span style="background-image:url('${rc.contextPath}/download-attachment?documentId=$docId')"></span>
146
                                        </a>
163
                                        </a>
147
                                    #end
164
                                    #end
148
                                #else
165
                                #else
149
                                    <span>-</span>
166
                                    <span class="text-center">-</span>
150
                                #end
167
                                #end
151
 
168
 
152
                            </td>
169
                            </td>
153
 
170
 
154
 
171
 
155
                            <td class="text-center">
172
                            <td class="text-center">
156
                                $trialForm.getStatus()
173
                                $trialForm.getStatus()
157
                            </td>
174
                            </td>
-
 
175
                            <td class="text-center">
-
 
176
                                #if($trialForm.remark)
-
 
177
                                    <br/>$trialForm.remark
-
 
178
                                #else
-
 
179
                                    <span class="text-center">-</span>
-
 
180
                                #end
-
 
181
                            </td>
158
 
182
 
159
                        </tr>
183
                        </tr>
160
                        #end
184
                        #end
161
                    #else
185
                    #else
162
                    <tr>
186
                    <tr>