Subversion Repositories SmartDukaan

Rev

Rev 33507 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 33507 Rev 33624
Line 11... Line 11...
11
<section class="wrapper">
11
<section class="wrapper">
12
 
12
 
13
    <table class="table-bordered table">
13
    <table class="table-bordered table">
14
        <thead>
14
        <thead>
15
        <tr>
15
        <tr>
-
 
16
            <th>Filled By</th>
16
            <th>Outlet Name</th>
17
            <th>Outlet Name</th>
17
            <th>Owner Name</th>
18
            <th>Owner Name</th>
18
            <th>Mobile</th>
19
            <th>Mobile</th>
19
            <th>City</th>
20
            <th>City</th>
20
            <th>RBM</th>
21
            <th>RBM</th>
21
            <th>Action</th>
22
            <th>Action</th>
22
        </tr>
23
        </tr>
23
        </thead>
24
        </thead>
24
        <tbody>
25
        <tbody>
25
            #foreach($loiForm in $loiForms)
26
            #foreach($loiFormModel in $loiFormModels)
26
            <tr>
27
            <tr>
27
                <td>$loiForm.getCompanyName()</td>
28
                <td>$loiFormModel.getLoiFormFilledBy()</td>
28
                <td>$loiForm.getFullName()</td>
29
                <td>$loiFormModel.getCompanyName()</td>
29
                <td>$loiForm.getMobile()</td>
30
                <td>$loiFormModel.getOwnerName()</td>
30
                #if($loiForm.getBillingAddress().getLoc())
31
                <td>$loiFormModel.getMobile()</td>
31
                    <td>$loiForm.getBillingAddress().getLoc()($loiForm.getBillingAddress().getLocality())</td>
-
 
32
                #else
-
 
33
                    <td>$loiForm.getBillingAddress().getLocality()</td>
32
                <td>$loiFormModel.getCity()</td>
34
                #end
-
 
-
 
33
 
35
                <td>
34
                <td>
36
                    <select class="authId" required>
35
                    <select class="authId" required>
37
                        <option value=" " selected>Select RBM</option>
36
                        <option value=" " selected>Select RBM</option>
38
                        #foreach( $authUser in $authUsers)
37
                        #foreach( $authUser in $authUsers)
39
                            <option value="$authUser.getId()">$authUser.getFullName()</option>
38
                            <option value="$authUser.getId()">$authUser.getFullName()</option>
40
                        #end
39
                        #end
41
                    </select>
40
                    </select>
42
                </td>
41
                </td>
43
                <td>
42
                <td>
44
                    <button id="createNewOnboardingPanel" value="$loiForm.getId()" class="btn-success">Create
43
                    <button id="createNewOnboardingPanel" value="$loiFormModel.getId()" class="btn-success">Create
45
                        Onboarding
44
                        Onboarding
46
                    </button>
45
                    </button>
47
                </td>
46
                </td>
48
            </tr>
47
            </tr>
49
            #end
48
            #end