<table class="align-middle mb-0 table table-borderless table-striped table-hover" id="mentor_table">
    <thead id="domain_table_head">
        <tr>
         <th class="text-center">Sl.No.</th> 
            <th>Industry Name</th>
            <th>Subscription Type</th>
            <th>Payment status</th>
            <th>Email</th>
            <th>Activation date</th>
            <center><th class="text-center custom_width_datatable">Action</th></center>
        </tr>
    </thead>
    <tbody>
        {{#mentor_records}}
        <tr>
            <td class="text-center text-muted"> {{count}}  </td>
            <td>
                <div class="widget-content p-0">
                    <div class="widget-content-wrapper">
                            <div class="widget-heading"> {{indname}}  </div>
                        </div>
                    </div>
                </div>
            </td>
            <td>
                <div class="widget-content p-0">
                    <div class="widget-content-wrapper">
                            <div class="widget-heading"> {{subtype}}  </div>
                        </div>
                    </div>
                </div>
            </td>
            <td>
                <div class="widget-content p-0">
                    <div class="widget-content-wrapper">
                            <div class="widget-heading">  {{paymentstatus}} </div>
                        </div>
                    </div>
                </div>
            </td>
            <td>
                <div class="widget-content p-0">
                    <div class="widget-content-wrapper">
                            <div class="widget-heading"> {{email}} </div>
                        </div>
                    </div>
                
            </td>
            <td>
                <div class="widget-content p-0">
                    <div class="widget-content-wrapper">
                            <div class="widget-heading">  {{negative_feedback}} </div>
                        </div>
                    </div>
                </div>
            </td>
            <td style="text-align: center;">
                {{#deactive_mentor}}
                    <button type="button" class="btn btn-secondary activate_mentor" data-deactivateid={{deactive_mentor}} data-id="{{indus_mentor_id}}">Inactive</button>
                {{/deactive_mentor}}
                {{^deactive_mentor}}
                    <button type="button" class="btn btn-success  deactivate" data-id="{{indus_mentor_id}}">Active</button>
                {{/deactive_mentor}}

            </td>
        </tr>
        {{/mentor_records}}
    </tbody>
</table>
    
