Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | 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>
16
            <th>Outlet Name</th>
17
            <th>Owner Name</th>
18
            <th>Mobile</th>
19
            <th>City</th>
20
            <th>RBM</th>
21
            <th>Action</th>
22
        </tr>
23
        </thead>
24
        <tbody>
25
            #foreach($loiForm in $loiForms)
26
            <tr>
27
                <td>$loiForm.getCompanyName()</td>
28
                <td>$loiForm.getFullName()</td>
29
                <td>$loiForm.getMobile()</td>
30
                #if($loiForm.getBillingAddress().getLoc())
31
                    <td>$loiForm.getBillingAddress().getLoc()($loiForm.getBillingAddress().getLocality())</td>
32
                #else
33
                    <td>$loiForm.getBillingAddress().getLocality()</td>
34
                #end
35
                <td>
36
                    <select class="authId" required>
37
                        <option value=" " selected>Select RBM</option>
38
                        #foreach( $authUser in $authUsers)
39
                            <option value="$authUser.getId()">$authUser.getFullName()</option>
40
                        #end
41
                    </select>
42
                </td>
43
                <td>
44
                    <button id="createNewOnboardingPanel" value="$loiForm.getId()" class="btn-success">Create
45
                        Onboarding
46
                    </button>
47
                </td>
48
            </tr>
49
            #end
50
 
51
        </tbody>
52
    </table>
53
</section>