У меня есть эти 2 столбца, и я хочу поставить строку, где находится консультант по путешествиям = Имя пользователя1 с зеленым цветом на буквах и имя пользователя2 с красным цветом на буквах.
Как я могу это сделать?
<table class="table table-striped table-hover table-bordered tablesModel">
<thead>
<tr>
<th data-field="@Html.DisplayNameFor(model => model.Travel_Consultant)" data-sortable="true">
@Html.DisplayNameFor(model => model.Travel_Consultant)
</th>
@*scope1, scope2*@
<th data-field="@Html.DisplayNameFor(model => model.Description)">
@Html.DisplayNameFor(model => model.Description)
</th>
</tr>
</thead>
<tbody>
@foreach (var item in Model)
{
<tr>
<td data-field="@Html.DisplayNameFor(model => model.Travel_Consultant)" data-sortable="true">
@Html.DisplayFor(modelItem => item.Travel_Consultant)
</td>
<td data-field="@Html.DisplayNameFor(model => model.Description)">
@Html.DisplayFor(modelItem => item.Description)
</td>
<td style="text-align:center;">
<button onclick="createOrEdit(@item.ExtraJobsID)" type="button" class="btn-xs buttongreenpt">
<i class="fa fa-edit fa-20px"></i>
</button>
</td>
</tr>
}
</tbody>
</table>