mirror of
https://github.com/LD-Reborn/Berufsschule_HAM.git
synced 2025-12-20 15:01:56 +00:00
23 lines
537 B
Plaintext
23 lines
537 B
Plaintext
@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>
|