This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,195 @@
@using Kreta.Resources
@using Kreta.Web.Areas.Kerdoiv.Controllers
@using Kreta.Web.Helpers
@using Kreta.Web.Areas.Kerdoiv.Models
@model NatKerdoivModel
@{
var formName = NatKerdoivController.FormName;
}
@using (Html.KretaForm(formName))
{
@Html.HiddenFor(x => x.Id)
@Html.KretaValidationSummary()
<div class="kerdoivWrapper container-fluid">
<div class="row kerdoivTitle">
<div class="col-xs-12">
<a class='redirectionLink' href='https://tudasbazis.ekreta.hu/pages/viewpage.action?pageId=6717625' target='_blank'>@(CommonResource.KattintsonIdeAKitoltesiUtmutatohoz)</a>
</div>
</div>
<div class="row kerdoivTitle">
<div class="col-xs-12">
@KerdoivResource.Kerdes1Tol10IgSzoveg
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-8">
@KerdoivResource.Kerdes01
</div>
<div class="col-sm-12 col-md-4">
@Html.KretaSelectorFor(m => m.Kerdes01, Model.EgyToOtWithNemTudomSelectList)
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-8">
@KerdoivResource.Kerdes02
</div>
<div class="col-sm-12 col-md-4">
@Html.KretaSelectorFor(m => m.Kerdes02, Model.EgyToOtWithNemTudomSelectList)
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-8">
@KerdoivResource.Kerdes03
</div>
<div class="col-sm-12 col-md-4">
@Html.KretaSelectorFor(m => m.Kerdes03, Model.EgyToOtWithNemTudomSelectList)
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-8">
@KerdoivResource.Kerdes04
</div>
<div class="col-sm-12 col-md-4">
@Html.KretaSelectorFor(m => m.Kerdes04, Model.EgyToOtWithNemTudomSelectList)
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-8">
@KerdoivResource.Kerdes05
</div>
<div class="col-sm-12 col-md-4">
@Html.KretaSelectorFor(m => m.Kerdes05, Model.EgyToOtWithNemTudomSelectList)
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-8">
@KerdoivResource.Kerdes06
</div>
<div class="col-sm-12 col-md-4">
@Html.KretaSelectorFor(m => m.Kerdes06, Model.EgyToOtWithNemTudomSelectList)
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-8">
@KerdoivResource.Kerdes07
</div>
<div class="col-sm-12 col-md-4">
@Html.KretaSelectorFor(m => m.Kerdes07, Model.EgyToOtWithNemTudomSelectList)
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-8">
@KerdoivResource.Kerdes08
</div>
<div class="col-sm-12 col-md-4">
@Html.KretaSelectorFor(m => m.Kerdes08, Model.EgyToOtWithNemTudomSelectList)
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-8">
@KerdoivResource.Kerdes09
</div>
<div class="col-sm-12 col-md-4">
@Html.KretaSelectorFor(m => m.Kerdes09, Model.EgyToOtWithNemTudomSelectList)
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-8">
@KerdoivResource.Kerdes10
</div>
<div class="col-sm-12 col-md-4">
@Html.KretaSelectorFor(m => m.Kerdes10, Model.EgyToOtWithNemTudomSelectList)
</div>
</div>
<div class="row kerdoivTitle">
<div class="col-xs-12">
@KerdoivResource.Kerdes11Tol12IgSzoveg
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-8">
@KerdoivResource.Kerdes11
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-8">
@Html.KretaTextAreaFor(m => m.Kerdes11, 1)
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-8">
@KerdoivResource.Kerdes12
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-8">
@Html.KretaTextAreaFor(m => m.Kerdes12, 1)
</div>
</div>
<div class="row">
<div class="BtnOk" style="float: right; padding-left: 5px;">
@Html.KretaButton("SaveNatKerdoiv", KerdoivResource.AKerdoivBekuldese, clickEventName: "NatKerdoivHelper.save")
</div>
</div>
</div>
}
<script type="text/javascript">
var NatKerdoivHelper = (function() {
var natKerdoivHelper = function () { };
var url = {
Save: "@Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new { controller = "NatKerdoivApi", action = "Save" })"
};
var formName = "@formName";
natKerdoivHelper.save = function () {
var form = $("#" + formName);
if (form.valid()) {
var formData = $("#" + formName).toObject();
AjaxHelper.DoValidationPost(url.Save,
formName,
formData,
saveResponseOk);
}
}
function saveResponseOk() {
KretaWindowHelper.feedbackWindow("@(CommonResource.Siker)", "@(KerdoivResource.AKerdoivBekuldeseSikeresenMegtortent)", false);
}
return natKerdoivHelper;
})();
</script>
<style>
.kerdoivWrapper .kerdoivTitle {
font-weight: bold;
padding-top: 20px;
}
.kerdoivWrapper .redirectionLink {
font-weight: 600;
}
.redirectionLink:hover {
color: #337AB7;
text-decoration: none;
}
.redirectionLink:after {
color: #5C6A79;
text-decoration: none;
}
</style>

View file

@ -0,0 +1,17 @@
<div class="container-fluid details">
<div>
Kedves Kolléganő! Kedves Kolléga!<br />
Az Eszterházy Károly Egyetemen működő Oktatás 2030 Tanulástudományi Kutatóközpont a jelenleg érvényes tantervi-tartalmi szabályozók (Nemzeti alaptanterv, kerettantervek) megújítására kíván javaslatot tenni.<br />
A kérdőív kitöltése nem kötelező, önkéntes!<br />
Rövid kérdőívünk kitöltésével kérjük, segítse kutató-fejlesztő munkánkat!<br />
<br />
Támogató együttműködésében bízva,<br />
Tisztelettel,<br />
<p style="margin-left: 100px;">
Dr. Pupek Emese PhD<br />
mb. főigazgató<br />
Oktatás 2030 Tanulástudományi Kutatóközpont<br />
Eszterházy Károly Egyetem<br />
</p>
</div>
</div>

View file

@ -0,0 +1,3 @@
@{
Layout = "~/Views/Shared/_MasterLayout.cshtml";
}

View file

@ -0,0 +1,38 @@
<?xml version="1.0"?>
<configuration>
<configSections>
<sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
<section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
</sectionGroup>
</configSections>
<system.web.webPages.razor>
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<pages pageBaseType="System.Web.Mvc.WebViewPage">
<namespaces>
<add namespace="System.Web.Mvc" />
<add namespace="System.Web.Mvc.Ajax" />
<add namespace="System.Web.Mvc.Html" />
<add namespace="System.Web.Routing" />
<add namespace="Kreta.Web" />
<add namespace="Kreta.BusinessLogic.Utils" />
<add namespace="Kendo.Mvc.UI" />
<add namespace="Kreta.Web.Helpers" />
<add namespace="System.Web.Optimization" />
</namespaces>
</pages>
</system.web.webPages.razor>
<appSettings>
<add key="webpages:Enabled" value="false" />
</appSettings>
<system.webServer>
<handlers>
<remove name="BlockViewHandler"/>
<add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler" />
</handlers>
</system.webServer>
</configuration>