On affiche l'état de la série (abandonnée ou terminée) dans vue Catalogue et Série.
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
@using MaBibli.Shared.Dtos
|
||||
@using MaBibli.Shared.Entites
|
||||
|
||||
@*
|
||||
L'arbre des séries : rien d'autre que la descendance.
|
||||
@@ -30,6 +31,12 @@
|
||||
}
|
||||
|
||||
<a class="arbre-titre" href="@($"series/{Serie.Id}")">@Serie.Titre</a>
|
||||
@if (Serie.Etat != EtatSerie.EnCours)
|
||||
{
|
||||
<span class="arbre-etat">
|
||||
@(Serie.Etat == EtatSerie.Terminee ? "terminée" : "abandonnée")
|
||||
</span>
|
||||
}
|
||||
<span class="arbre-compte">@Avancement()</span>
|
||||
|
||||
@if (ActionsActives)
|
||||
|
||||
Reference in New Issue
Block a user