Subversion Repositories SmartDukaan

Rev

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

<style>
    th {
        text-align: center;
    }

    button {

    }
</style>

<section class="wrapper">

    <table class="table-bordered table">
        <thead>
        <tr>
            <th>Filled By</th>
            <th>Outlet Name</th>
            <th>Owner Name</th>
            <th>Mobile</th>
            <th>City</th>
            <th>RBM</th>
            <th>Action</th>
        </tr>
        </thead>
        <tbody>
            #foreach($loiFormModel in $loiFormModels)
            <tr>
                <td>$loiFormModel.getLoiFormFilledBy()</td>
                <td>$loiFormModel.getCompanyName()</td>
                <td>$loiFormModel.getOwnerName()</td>
                <td>$loiFormModel.getMobile()</td>
                <td>$loiFormModel.getCity()</td>

                <td>
                    <select class="authId" required>
                        <option value=" " selected>Select RBM</option>
                        #foreach( $authUser in $authUsers)
                            <option value="$authUser.getId()">$authUser.getFullName()</option>
                        #end
                    </select>
                </td>
                <td>
                    <button id="createNewOnboardingPanel" value="$loiFormModel.getId()" class="btn-success">Create
                        Onboarding
                    </button>
                </td>
            </tr>
            #end

        </tbody>
    </table>
</section>