@using Microsoft.AspNetCore.Components.Sections @using Microsoft.EntityFrameworkCore @using CocktailWeb.Data @page "/settings/flaschen" @inject IDbContextFactory FlascheDataContextFactory; Flaschen @if (CreateFormVisible && FlascheToCreate != null) {

Flasche hinzufügen

} else {
} @if (FlaschenListe != null && FlaschenListe.Count > 0) {
@foreach (var flasche in FlaschenListe) { @if (EditFormVisible && FlascheToUpdate != null && FlascheToUpdate.Id == flasche.Id) { } else { } }
Name Action
@flasche.Name
} @code { }