Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
33507 tejus.loha 1
<style>
2
    th {
3
        text-align: center;
4
    }
5
 
6
    button {
7
 
8
    }
9
</style>
10
 
11
<section class="wrapper">
12
 
13
    <table class="table-bordered table">
14
        <thead>
15
        <tr>
33624 tejus.loha 16
            <th>Filled By</th>
33507 tejus.loha 17
            <th>Outlet Name</th>
18
            <th>Owner Name</th>
19
            <th>Mobile</th>
20
            <th>City</th>
21
            <th>RBM</th>
22
            <th>Action</th>
23
        </tr>
24
        </thead>
25
        <tbody>
33624 tejus.loha 26
            #foreach($loiFormModel in $loiFormModels)
33507 tejus.loha 27
            <tr>
33624 tejus.loha 28
                <td>$loiFormModel.getLoiFormFilledBy()</td>
29
                <td>$loiFormModel.getCompanyName()</td>
30
                <td>$loiFormModel.getOwnerName()</td>
31
                <td>$loiFormModel.getMobile()</td>
32
                <td>$loiFormModel.getCity()</td>
33
 
33507 tejus.loha 34
                <td>
35
                    <select class="authId" required>
36
                        <option value=" " selected>Select RBM</option>
37
                        #foreach( $authUser in $authUsers)
38
                            <option value="$authUser.getId()">$authUser.getFullName()</option>
39
                        #end
40
                    </select>
41
                </td>
42
                <td>
33624 tejus.loha 43
                    <button id="createNewOnboardingPanel" value="$loiFormModel.getId()" class="btn-success">Create
33507 tejus.loha 44
                        Onboarding
45
                    </button>
46
                </td>
47
            </tr>
48
            #end
49
 
50
        </tbody>
51
    </table>
52
</section>