mirror of
https://github.com/LD-Reborn/Berufsschule_HAM.git
synced 2025-12-20 06:51:55 +00:00
Added Inventory, Assets, Locations, Users pages
This commit is contained in:
22
src/Views/Home/Inventory.cshtml
Normal file
22
src/Views/Home/Inventory.cshtml
Normal file
@@ -0,0 +1,22 @@
|
||||
@using Microsoft.AspNetCore.Mvc.Localization
|
||||
@using Berufsschule_HAM.Models
|
||||
@model HomeIndexViewModel
|
||||
@inject IViewLocalizer T
|
||||
@{
|
||||
ViewData["Title"] = T["Inventory"];
|
||||
}
|
||||
|
||||
|
||||
<div class="container py-4">
|
||||
<h2 class="mb-3">@T["Inventory"]</h2>
|
||||
|
||||
|
||||
<div class="mb-4 d-flex flex-wrap gap-2">
|
||||
<button class="btn btn-outline-primary">Dummy button</button>
|
||||
<button class="btn btn-outline-secondary">Dummy button</button>
|
||||
<button class="btn btn-outline-danger">Dummy button</button>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user