1bfee37b4f
- Inizio a generare ricetta da template
23 lines
518 B
Plaintext
23 lines
518 B
Plaintext
@if (isLoading)
|
|
{
|
|
<LoadingData></LoadingData>
|
|
}
|
|
else
|
|
{
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h5>Dati Ricetta</h5>
|
|
@if (CurrRecipe?.HeadVal != null)
|
|
{
|
|
<p>testata: <b>@CurrRecipe.HeadVal.Count</b> valori</p>
|
|
}
|
|
</div>
|
|
<div class="card-body">
|
|
@if (CurrRecipe?.RowsVal != null)
|
|
{
|
|
<p>righe: <b>@CurrRecipe.RowsVal.Count</b> valori</p>
|
|
}
|
|
</div>
|
|
</div>
|
|
}
|