song-of-the-day/song_of_the_day/Pages/SuggestionHelpers.cshtml
Simon Diesenreiter d04b453e6f
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
feat: initial working version of service refs NOISSUE
2025-04-14 22:03:58 +02:00

33 lines
887 B
Plaintext

@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>