feat: initial working version of service refs NOISSUE
Some checks failed
CI / linter (9.0.X, ubuntu-latest) (push) Failing after 1m36s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been skipped
SonarQube Scan / SonarQube Trigger (push) Failing after 4m42s

This commit is contained in:
2025-04-14 22:03:58 +02:00
parent 2bf3258081
commit d04b453e6f
30 changed files with 1146 additions and 72 deletions

View File

@@ -0,0 +1,32 @@
@page
@model SuggestionHelpersModel
@{
ViewData["Title"] = "Suggestion Helpers";
}
<div class="text-left">
<table>
<tr>
<th>Title</th>
<th>Description</th>
</tr>
@foreach (var helper in @Model.SuggestionHelpers)
{
var title = helper.Title; var description = helper.Description;
<tr>
<td>@title</td>
<td>@description</td>
</tr>
}
</table>
<hr />
<form method="post">
<label asp-for="NewSuggestionTitle">Title</label>
<input asp-for="NewSuggestionTitle" />
<br />
<label asp-for="NewSuggestionDescription">Description</label>
<input asp-for="NewSuggestionDescription" />
<br />
<input type="submit" title="Submit" />
</form>
</div>