30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
@page "/settings/cocktails"
|
|
@using CocktailWeb.Data
|
|
@using Microsoft.AspNetCore.Components.Sections
|
|
@using Microsoft.EntityFrameworkCore
|
|
@inject IDbContextFactory<DbDataContext> DataContextFactory;
|
|
@inject IWebHostEnvironment env;
|
|
<!--layout SideScrollLayout-->
|
|
<!--<h3>Cocktails</h3>-->
|
|
|
|
<SectionContent SectionId="TopRow.Title">
|
|
<label>Einstellungen - Cocktails</label>
|
|
</SectionContent>
|
|
|
|
<a class="btn btn-primary mb-3" href="/settings/cocktails/edit">Cocktail hinzufügen</a>
|
|
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-hover table-bordered table-light border-dark">
|
|
<tbody>
|
|
@foreach (Cocktail c in CocktailListe)
|
|
{
|
|
<tr>
|
|
<td class="p-0"><img src="@c.ImageURL" style="max-height:40px;" /></td>
|
|
<td>@c.Name</td>
|
|
<td> <a class="btn btn-primary" href="/settings/cocktails/edit/@c.Id">Bearbeiten</a></td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|
|
|
|
</div> |