@model Webzine.WebApplication.ViewModels.Recherche.RechercheIndexViewModel @{ ViewData["Title"] = "Recherche"; }

Resultats pour "@Model.Mot"


@if (string.IsNullOrWhiteSpace(Model.Mot)) {
Saisissez un mot-cle pour lancer une recherche.
} else if (!Model.Artistes.Any() && !Model.Titres.Any()) {
Aucun artiste ni titre ne correspond a votre recherche.
} else { @if (Model.Artistes.Any()) {

Artistes

@foreach (var artiste in Model.Artistes) {
@artiste.Nom (@artiste.NombreDeTitres titre(s))
} } @if (Model.Titres.Any()) {

Titres

@foreach (var titre in Model.Titres) {
@titre.Libelle
Duree : @TimeSpan.FromSeconds(titre.Duree).ToString(@"mm\:ss")
} } }