@using GreenTree.Nachtragsmanagement.Web.Models.Global;
@{
Layout = "~/Views/Shared/_FunctionLayout.cshtml";
}
@{
var userContext = GreenTree.Nachtragsmanagement.Core.CommonHelper.UserContext();
}
@model GreenTree.Nachtragsmanagement.Web.Models.Admin.AppInfo.AppInfoDataModel
|
Verwendete Bibliotheken
@Html.DevExpress().ListBox(t =>
{
t.Name = "devListBoxAssemblies";
t.Width = new Unit(100, UnitType.Percentage);
t.Height = new Unit(260, UnitType.Pixel);
t.Properties.Columns.Add("Manufacturer", "Hersteller", new Unit(75, UnitType.Percentage));
t.Properties.Columns.Add("Name", "Bibliothek", new Unit(75, UnitType.Percentage));
t.Properties.Columns.Add("Version", "Version", new Unit(25, UnitType.Percentage));
}).BindList(Model.Assemblies).GetHtml()
|
Sonstige Informationen
Aktuelle Programmpaketversion
v@GreenTree.Nachtragsmanagement.Core.AppendixVersion.CurrentVersion
@if (userContext.CurrentUser.HasFunction("Administration-AppInfo-Update"))
{
Html.DevExpress().Button(t =>
{
t.Name = "devButtonUpdate";
t.Text = "Auf Update prüfen";
t.ClientSideEvents.Click = "function (s, e) { checkUpdate(); }";
}).GetHtml();
}
@if (Model.IsUpdate)
{
Update erfolgreich!
}
|