@* For more information on enabling MVC for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860 *@ @using Microsoft.AspNetCore.Mvc.Localization @using gehGassi.Web.Models @using Microsoft.Extensions.Localization @using gehGassi.Web.Helper @using gehGassi.Core.Services @model gehGassi.Web.Models.RatingWithNamesVm @inject IViewLocalizer Localizer @inject ICountryService CountryService @{ IStringLocalizer annotationsLocalizer = ViewBag.AnnotationsLocalizer; }
@if (!string.IsNullOrWhiteSpace(Model.FromPhoto)) { } else { }

@Model.FromName

Typ des Bewerters: @Model.FromType.GetDisplayName(annotationsLocalizer)
Typ der Bewertung: @Model.TargetType.GetDisplayName(annotationsLocalizer)
Punkte: @Model.Points
Ist gelöscht? @Model.Deleted
Erstellt: @Model.Created.ToLocalTime().ToString("G")
Update: @Model.UpdatedAt.ToLocalTime().ToString("G")
@Html.Hidden("jsUpdateUrl", Url.Action("UpdateRating", "AppUserReport")) @Html.Hidden("jsDeleteUrl", Url.Action("DeleteRating", "AppUserReport"))