Primo test spacchettamento ricetta
This commit is contained in:
@@ -9,13 +9,36 @@ else
|
||||
<h5>Dati Ricetta</h5>
|
||||
@if (CurrRecipe?.HeadVal != null)
|
||||
{
|
||||
<p>testata: <b>@CurrRecipe.HeadVal.Count</b> valori</p>
|
||||
<div class="row g-1">
|
||||
@foreach (var item in CurrRecipe.HeadVal)
|
||||
{
|
||||
<div class="col-3">
|
||||
<div class="form-floating">
|
||||
<input type="text" class="form-control" placeholder="@item.Key" @bind-value="@CurrRecipe.HeadVal[item.Key]">
|
||||
<label>@item.Key</label>
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
<div class="card-body">
|
||||
@if (CurrRecipe?.RowsVal != null)
|
||||
{
|
||||
<p>righe: <b>@CurrRecipe.RowsVal.Count</b> valori</p>
|
||||
@foreach (var riga in CurrRecipe.RowsVal)
|
||||
{
|
||||
<div class="row g-1">
|
||||
@foreach (var item in riga.Value)
|
||||
{
|
||||
<div class="col-3">
|
||||
<div class="form-floating">
|
||||
<input type="text" class="form-control" placeholder="@item.Key" @bind-value="@CurrRecipe.RowsVal[riga.Key][item.Key]">
|
||||
<label>@item.Key</label>
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
}
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<RootNamespace>MP.SPEC</RootNamespace>
|
||||
<Version>6.16.2302.810</Version>
|
||||
<Version>6.16.2302.815</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<body>
|
||||
<i>Modulo MAPOSPEC </i>
|
||||
<h4>Versione: 6.16.2302.810</h4>
|
||||
<h4>Versione: 6.16.2302.815</h4>
|
||||
<br /> Note di rilascio:
|
||||
<ul>
|
||||
<li>
|
||||
|
||||
@@ -1 +1 @@
|
||||
6.16.2302.810
|
||||
6.16.2302.815
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<item>
|
||||
<version>6.16.2302.810</version>
|
||||
<version>6.16.2302.815</version>
|
||||
<url>https://nexus.steamware.net/repository/SWS/MP-SPEC/stable/LAST/MP.SPEC.zip</url>
|
||||
<changelog>https://nexus.steamware.net/repository/SWS/MP-SPEC/stable/LAST/ChangeLog.html</changelog>
|
||||
<mandatory>false</mandatory>
|
||||
|
||||
Reference in New Issue
Block a user