Skip to content

Commit

Permalink
Added Venmo account to user list display
Browse files Browse the repository at this point in the history
  • Loading branch information
morrisonbrett committed Jun 20, 2024
1 parent 4533cec commit a924128
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pickuphockey/Views/Users/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
<th>
@Html.DisplayNameFor(model => model.PayPalEmail)
</th>
<th>
@Html.DisplayNameFor(model => model.VenmoAccount)
</th>
@if (User.IsInRole("Admin"))
{
<th>
Expand Down Expand Up @@ -72,6 +75,9 @@
<td>
@Html.DisplayFor(modelItem => item.PayPalEmail)
</td>
<td>
@Html.DisplayFor(modelItem => item.VenmoAccount)
</td>
@if (User.IsInRole("Admin"))
{
<td>
Expand Down

0 comments on commit a924128

Please sign in to comment.