mirror of
https://github.com/LD-Reborn/Berufsschule_HAM.git
synced 2025-12-20 06:51:55 +00:00
17 lines
446 B
Plaintext
17 lines
446 B
Plaintext
@using Microsoft.AspNetCore.Mvc.Localization
|
|
@using Berufsschule_HAM.Models
|
|
@model HomeIndexViewModel
|
|
@inject IViewLocalizer T
|
|
@{
|
|
ViewData["Title"] = T["Home Page"];
|
|
}
|
|
|
|
|
|
<div class="container py-4">
|
|
<h2 class="mb-3">@T["Overview"]</h2>
|
|
<div class="mb-4 d-flex flex-wrap gap-2">
|
|
<button class="btn btn-primary">@T["Inventory asset"]</button>
|
|
<button class="btn btn-primary">@T["Create user"]</button>
|
|
</div>
|
|
</div>
|