Skip to content

Commit

Permalink
add genres to Publications/Filter page, resolves #661
Browse files Browse the repository at this point in the history
  • Loading branch information
adelikat committed Jan 9, 2022
1 parent 00ff9fe commit 1f94a41
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions TASVideos/Pages/Publications/Filter.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
<label asp-for="Search.Years"></label>
<select asp-for="Search.Years" asp-items="Model.Tokens.Years.Select(c => new SelectListItem(c.ToString(), c.ToString()))" class="form-control"></select>
</form-group>
<form-group>
<label asp-for="Search.Genres"></label>
<select asp-for="Search.Genres" asp-items="Model.Tokens.Genres.Select(c => new SelectListItem(c.ToString(), c.ToString()))" class="form-control"></select>
</form-group>
</column>
<column md="4">
<form-group>
Expand Down

0 comments on commit 1f94a41

Please sign in to comment.