@using Kreta.Web.Areas.Tanulo.Models;
@using Kreta.Resources;
@model HozzaferesGeneralasaModel
@if (Model.ErrorList.Count > 0)
{
@Html.Label(CommonResource.AKovetkezoknelHozzaferesGeneralasaSikertelen, new Dictionary { { "class", "windowInputLabel labelError" } })
@Html.KretaTextArea("tanulohibak", Model.ErrorList, 15, new Dictionary() { { "style", "color: red; height: 200px; resize: none;" }, { "readonly", "readonly" } })
}
@if (Model.VisibileFileDownload)
{
@if (Model.IsTanulo)
{
@Html.ActionLink(CommonResource.HozzaferesiAdatokExportalasa, "TanuloJelszoAdatok", new { fileName = "TanuloJelszoAdatok.pdf" })
}
else
{
@Html.ActionLink(CommonResource.HozzaferesiAdatokExportalasa, "HozzatartozoJelszoAdatok", new { fileName = "HozzatartozoJelszoAdatok.pdf" })
}
}