<div class="container-fluid">
<div class="card card-custom gutter-b pl-5 mt-7">
<div class="card-body pt-5 pb-5">
<button class="btn btn-warning btn-md text-weight-bolder text-large" data-toggle="modal" data-target="#modalCreateCompReq">Create New Company Requirement</button>
<div class="card-body">
<table class="table table-responsive table-content-lg" id="compReqTable">
<thead>
<tr>
<th>Company Requirement Name</th>
<th title="action"></th>
</tr>
</thead>
<tbody id="">
@if (Model != null && Model.Count > 0)
{
@foreach (var compR in Model)
{
<tr>
<td>@compR.CompanyRequirementsName</td>
<td>
<a class="mr-3" data-toggle="modal" data-target="#modalUpdateCompReq" onclick="$('#editCompReq').val('@compR.CompanyRequirementsName')"><i class="far fa-edit text-warning"></i></a>
</td>
</tr>
}
}
</tbody>
</table>
</div>
</div>
</div>
</div>