Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions AdminDashboard/AdminDashboard/AdminDashboard.csproj
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<UserSecretsId>aspnet-AdminDashboard-7183ED2B-A943-4465-BFEB-70C85C881AAF</UserSecretsId>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CsvHelper" Version="33.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="9.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="9.0.0" />
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.13.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.0">
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="10.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="10.0.0" />
<PackageReference Include="Microsoft.CodeAnalysis" Version="5.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Data.SqlClient" Version="4.9.0" />
<PackageReference Include="System.Data.SQLite" Version="1.0.119" />
<PackageReference Include="System.Drawing.Common" Version="9.0.0" />
<PackageReference Include="Telerik.UI.for.AspNet.Core" Version="2025.1.227" />
<PackageReference Include="Telerik.UI.for.AspNet.Core" Version="2025.4.1111" />
</ItemGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions AdminDashboard/AdminDashboard/Pages/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@
</script>

<kendo-tilelayout name="dashboard-tilelayout" columns="4" resizable="true" reorderable="true" columns-width="25%" rows-height="230px" on-resize="onTileResize">
<reorderable click-move-click="false" />
<containers>
<container body-template-id="tasks-ontrack-template" col-span="1" row-span="1">
<container-header template="<span class=k-card-title>Tasks On Track</span><a class='contextMenuButton'><span style='float:right; color:\\#656565;' class='k-font-icon k-icon k-i-more-vertical'></span></a>" />
Expand Down
1 change: 1 addition & 0 deletions AdminDashboard/AdminDashboard/Pages/Performance.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@
</script>

<kendo-tilelayout name="tilelayout" columns="6" resizable="true" reorderable="true" columns-width="16%" rows-height="380px" on-resize="onTileResize">
<reorderable click-move-click="false" />
<containers>
<container body-template-id="sales-revenue-template" col-span="6" row-span="1">
<container-header template="<span class=k-card-title>Sales Revenue</span>" />
Expand Down
1 change: 1 addition & 0 deletions AdminDashboard/AdminDashboard/Pages/Products.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@


<kendo-tilelayout name="tilelayout" columns="1" resizable="true" reorderable="true" columns-width="100%" rows-height="420px" on-resize="onTileResize">
<reorderable click-move-click="false" />
<containers>
<container body-template-id="revenue-rating-template" col-span="1" row-span="1">
</container>
Expand Down
1 change: 1 addition & 0 deletions AdminDashboard/AdminDashboard/Pages/Settings.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,7 @@
</script>

<kendo-tilelayout name="settings" columns="3" resizable="true" reorderable="true" columns-width="33%" rows-height="auto">
<reorderable click-move-click="false" />
<containers>
<container body-template-id="info-template" col-span="2" row-span="2">
</container>
Expand Down
6 changes: 3 additions & 3 deletions AdminDashboard/AdminDashboard/Pages/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
}

<link rel="stylesheet" href="@fontIconsUrl" />
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/themes/10.2.0/default/default-main.css" />
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/themes/12.2.3/default/default-main.css" />
<link rel="stylesheet" href="./css/site.css" />

@* Add the Kendo UI scripts: *@
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://kendo.cdn.telerik.com/2025.1.227/js/kendo.all.min.js"></script>
<script src="https://kendo.cdn.telerik.com/2025.1.227/js/kendo.aspnetmvc.min.js"></script>
<script src="https://kendo.cdn.telerik.com/2025.4.1111/js/kendo.all.min.js"></script>
<script src="https://kendo.cdn.telerik.com/2025.4.1111/js/kendo.aspnetmvc.min.js"></script>
<script src="https://unpkg.com/jszip/dist/jszip.min.js"></script>
@Html.Kendo().ActivateKendoScripts()
</head>
Expand Down