35 lines
777 B
Plaintext
35 lines
777 B
Plaintext
@if(Triplets is not null)
|
|
{
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Dernier changement</th>
|
|
<th>Nom</th>
|
|
<th>Valeur</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@if (Triplets is not null)
|
|
@foreach (var t in Triplets)
|
|
{
|
|
<tr>
|
|
<td>@t.LastFlush</td>
|
|
<td>@t.predicate</td>
|
|
<td>
|
|
<PrettyValueDisplay Predicate=@t.predicate Value=@t.value />
|
|
</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|
|
}
|
|
|
|
|
|
|
|
@code {
|
|
[Parameter]
|
|
public List<Triplet>? Triplets { get; set; } = null;
|
|
|
|
|
|
}
|