File: D:/HostingSpaces/RImmers2/portal.photomenu.nl/wwwroot/views/sharesHistory/index.html
<style>
.table-hover tbody tr:hover td,
.table-hover tbody tr td:hover {
background: #FFD493;
}
</style>
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">Shares of Restaurants</h1>
<!--<p><i><font color="blue"><i class="fa fa-info-circle" aria-hidden="true"></i> Select restaurant to see the shares</i></font></p>-->
<table class="table table-borders table-striped table-hover">
<thead>
<tr>
<!-- <th>
Image
</th>
-->
<th>Name</th>
<th>Address</th>
<th>City</th>
<th>Country</th>
</tr>
</thead>
<tbody>
@{foreach item in model.list}
<tr @{if item.Inactive} style="color:silver" @{fi} title="Click to see the shares" onclick="document.location.href='/sharesHistory/@{item.key}'" style='cursor: pointer;'>
<!--
<td style='vertical-align: middle;'>
<img src='@{item.thumbnail}' alt='@{item.Name}' style='max-width: 75px; max-height: 75px;'/>
</td>
-->
<td style='vertical-align: middle;'>
@{item.Name}
</td>
<td style='vertical-align: middle;'>
@{item.Address}
</td>
<td style='vertical-align: middle;'>
@{item.City}
</td>
<td style='vertical-align: middle;'>
@{item['Country']}
</td>
</tr>
@{end}
</tbody>
</table>
</div>
</div>