Skip to content

Commit

Permalink
Deploy to PROD (#90)
Browse files Browse the repository at this point in the history
* Don't show "submitted by" user email public for privacy reasons. (#88)

* Let the variants list link to the variant name. (#89)
  • Loading branch information
Zifah authored Aug 8, 2024
1 parent b824103 commit 21ffe70
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
5 changes: 0 additions & 5 deletions Website/Pages/SearchResults.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,7 @@
{
<hr />
<h4 class="strong-text intonation"><a href="/entries/@name.Name">@name.Name</a></h4>

<p><strong>Brief Meaning: </strong> @name.Meaning </p>

<p class="small text-muted">
<strong>@Localizer["submitby"]</strong> @name.SubmittedBy
</p>
}
}
</div>
Expand Down
8 changes: 6 additions & 2 deletions Website/Pages/SingleEntry.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<h4>@Localizer["extendedmeaningof"]</h4>
<p>@Model.Name.ExtendedMeaning</p>
}

@if (Model.Name.Videos.Any())
{
<br>
Expand Down Expand Up @@ -134,7 +134,11 @@

<br>
<h4>@Localizer["variants"]</h4>
<p class="intonation">@Model.Name.Variants</p>

foreach (var variant in (List<string>)Model.Name.Variants)
{
<p class="name"><a href="/entries/@variant" target="_self">@variant</a></p>
}
}
</div>

Expand Down

0 comments on commit 21ffe70

Please sign in to comment.