|
@Model.Translations.General
|
|
@Model.Translations.UserName
|
@Model.UserName
|
|
@Model.Translations.ProcessedFiles
|
@(Model.Succeeded.Count + Model.Failed.Count + Model.Infected.Count)
|
|
@Model.Translations.CatalogedFiles
|
@Model.Succeeded.Count
|
|
@Model.Translations.FailedFiles
|
@Model.Failed.Count
|
| |
|
@Model.Translations.File
|
@Model.Translations.Status
|
@Model.Translations.StartedOn
|
@Model.Translations.FileLocation
|
@foreach (var item in Model.Succeeded)
{
|
@item.FileName
|
@Model.Translations.Get(@item.Status.ToString())
|
@item.StartedOnLocal
|
}
@foreach (var item in Model.Failed)
{
|
@item.FileName
|
@Model.Translations.Get(@item.Status.ToString())
|
@item.StartedOnLocal
|
@item.FailedPath
|
}
@foreach (var item in Model.Infected)
{
|
@item.FileName
|
@Model.Translations.Get(@item.Status.ToString())
|
@item.StartedOnLocal
|
}