@model Webzine.WebApplication.Areas.Administration.ViewModels.Commentaire.CommentaireIndexViewModel; @{ ViewData["Title"] = "Commentaires"; }

Commentaires


@foreach (Webzine.Entity.Commentaire commentaire in Model.Commentaires) { }
Titre Nom Commentaire Date de création Actions
@commentaire.Titre.Libelle @commentaire.Auteur @commentaire.Contenu @commentaire.DateCreation.ToString("dd/MM/yyyy HH:mm:ss")
@if (Model.Page > 0) { << Page précédente } @if (Model.Page < Model.TotalPages - 1) { Page suivante >> }