Subversion Repositories SmartDukaan

Rev

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

Rev 35340 Rev 35360
Line 57... Line 57...
57
        background-position: center;
57
        background-position: center;
58
        background-repeat: no-repeat;
58
        background-repeat: no-repeat;
59
        background-size: contain;
59
        background-size: contain;
60
    }
60
    }
61
 
61
 
-
 
62
    .p-2 {
-
 
63
        padding: 0.7em;
-
 
64
    }
-
 
65
 
62
 
66
 
63
</style>
67
</style>
64
<section class="wrapper">
68
<section class="wrapper">
65
    <div class="row">
69
    <div class="row">
66
        <div class="col-lg-12">
70
        <div class="col-lg-12">
67
            <h3 class="page-header"><i class="icon_document_alt"></i>Trial Detail</h3>
71
            <h3 class="page-header"><i class="icon_document_alt"></i>Trial Partner</h3>
68
            <ol class="breadcrumb">
72
            <ol class="breadcrumb">
69
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
73
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
70
                <li><i class="icon_document_alt"></i>Pending Trial User Detail</li>
74
                <li><i class="icon_document_alt"></i> Trial Partner Req page</li>
71
            </ol>
75
            </ol>
72
        </div>
76
        </div>
73
    </div>
77
    </div>
74
 
78
 
75
 
79
 
76
    <div class="row">
80
    <div class="row">
77
        <div class="col-lg-12">
81
        <div class="col-lg-12">
78
            <table class="table table-border table-condensed table-bordered" id="trial-users">
82
            <table class="table table-border table-condensed table-bordered" id="trial-users">
79
                <thead>
83
                <thead>
80
                <tr>
84
                <tr>
-
 
85
                    <th>Id</th>
81
                    <th>Outlet Name</th>
86
                    <th>Outlet Name</th>
82
                    <th>Email</th>
87
                    <th>Email</th>
83
                    <th>Mobile</th>
88
                    <th>Mobile</th>
84
                    <th>Name</th>
89
                    <th>Name</th>
85
                    <th>City</th>
90
                    <th>City</th>
Line 93... Line 98...
93
                </thead>
98
                </thead>
94
                <tbody>
99
                <tbody>
95
                    #if($trialForms.size() > 0)
100
                    #if($trialForms.size() > 0)
96
                        #foreach( $trialForm in $trialForms )
101
                        #foreach( $trialForm in $trialForms )
97
                        <tr data-id="$trialForm.getId()">
102
                        <tr data-id="$trialForm.getId()">
-
 
103
                            <td>$trialForm.getId()</td>
98
                            <td>$trialForm.getBusinessName()</td>
104
                            <td>$trialForm.getBusinessName()</td>
99
                            <td>$trialForm.getEmail()</td>
105
                            <td>$trialForm.getEmail()</td>
100
                            <td>$trialForm.getMobile()</td>
106
                            <td>$trialForm.getMobile()</td>
101
                            <td>$trialForm.getFirstName() $trialForm.getLastName()</td>
107
                            <td>$trialForm.getFirstName() $trialForm.getLastName()</td>
102
                            <td>$trialForm.getCity()</td>
108
                            <td>$trialForm.getCity()</td>
Line 167... Line 173...
167
            </div>
173
            </div>
168
 
174
 
169
            <!-- Modal Body -->
175
            <!-- Modal Body -->
170
            <div class="modal-body">
176
            <div class="modal-body">
171
 
177
 
-
 
178
                <form id="asmBmForm" onsubmit="event.preventDefault(); saveAsmBm();"
-
 
179
                      class=" bg-light rounded shadow-sm">
-
 
180
 
-
 
181
                    <div class="row p-2">
-
 
182
                        <!-- BM Select -->
-
 
183
                        <div class="col-md-4 p-2">
-
 
184
                            <label class="form-label">Select BM</label>
-
 
185
                            <select name="bm" class="form-select">
-
 
186
                                <option value="">Select BM</option>
-
 
187
                                #foreach($option in $bm)
-
 
188
                                    <option value="$option.getId()">
-
 
189
                                        $option.getFirstName() $option.getLastName()
-
 
190
                                    </option>
-
 
191
                                #end
-
 
192
                            </select>
-
 
193
                        </div>
-
 
194
 
-
 
195
                        <!-- ASM Select -->
-
 
196
                        <div class="col-md-4 p-2">
-
 
197
                            <label class="form-label">Select ASM</label>
-
 
198
                            <select name="asm" class="form-select">
-
 
199
                                <option value="">Select ASM</option>
-
 
200
                                #foreach($option in $asm)
-
 
201
                                    <option value="$option.getId()">
-
 
202
                                        $option.getFirstName() $option.getLastName()
-
 
203
                                    </option>
-
 
204
                                #end
-
 
205
                            </select>
-
 
206
                        </div>
-
 
207
                        <div class="col-md-4">
-
 
208
                            <button type="submit" class="btn btn-danger w-100 mt-3">
-
 
209
                                Save
-
 
210
                            </button>
-
 
211
                        </div>
-
 
212
                    </div>
-
 
213
 
-
 
214
                </form>
-
 
215
                <hr>
-
 
216
 
-
 
217
 
172
                <form id="brandPotentialForm" onsubmit="event.preventDefault(); saveBrandPotential();">
218
                <form id="brandPotentialForm" onsubmit="event.preventDefault(); saveBrandPotential();">
173
 
219
 
174
                    <input type="hidden" name="trialFormId" value=""/>
220
                    <input type="hidden" name="trialFormId" value=""/>
175
 
221
 
176
                    <table class="table table-bordered align-middle">
222
                    <table class="table table-bordered align-middle">
Line 197... Line 243...
197
                        </tr>
243
                        </tr>
198
                        </tbody>
244
                        </tbody>
199
 
245
 
200
                    </table>
246
                    </table>
201
 
247
 
202
                    <button type="submit" class="btn w-100 mt-3" style="background:#d93025;color:white;">
248
                    <button type="submit" class="btn w-100 mt-3 btn-danger">
203
                        Save & Verify
249
                        Save & Verify
204
                    </button>
250
                    </button>
205
 
251
 
206
                </form>
252
                </form>
207
 
253