HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/RImmers2/portal.photomenu.nl/wwwroot/views/web/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">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>hasDishes</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 menu" onclick="document.location.href='/web/@{item.key}'" style='cursor: pointer;'>
                    <td style="vertical-align: middle">@{if item.hasActiveDishes} <i class="fa fa-check" aria-hidden="true"></i> @{fi}</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>