16 lines
No EOL
1,015 B
Text
16 lines
No EOL
1,015 B
Text
@using Kreta.Web.Helpers
|
|
@using Kreta.Resources
|
|
|
|
<div style="display: flex; flex-direction: column; padding: 10px 20px; gap: 5px;">
|
|
<div id="TanuloEvElejeFileDownload" style="cursor: pointer;">@Html.KretaIcon("fa-file-excel-o", new Dictionary<string, object> { { "style", "font-size: 22px; color: #207446;" } }) @SZIRAdatszolgResource.EllenorzoTablazat</div>
|
|
<a style="text-decoration: none;" href="https://tudasbazis.ekreta.hu/download/attachments/2424949/TANULO_EV_ELEJE_segedlet_v1.0.pdf?api=v2" rel="noopener noreferrer" target="_blank">@Html.KretaIcon("fa-globe", new Dictionary<string, object> { { "style", "font-size: 22px; color: #406A7C;" } }) @SZIRAdatszolgResource.Segedlet</a>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready(function () {
|
|
$('#TanuloEvElejeFileDownload').click(function () {
|
|
var url = "@Url.Action("TanuloEvEleje", "SZIRAdatszolg", new { area = "Adatszolgaltatasok" })";
|
|
AjaxHelper.DownloadFile(url);
|
|
});
|
|
});
|
|
</script> |