Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…ucture into ranks
  • Loading branch information
DeinFreund committed Dec 25, 2017
2 parents c9a4603 + c6a3157 commit 9d6ea62
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Zero-K.info/Views/Shared/UserDetail.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@
<td>
<div class="avatarbg">
<!-- @Html.AccountAvatar(Model) -->
@if (Model.Clan != null) { Html.PrintClan(Model.Clan, true, true); }
else if (Model.Faction != null) { Html.PrintFaction(Model.Faction, true); }
@if (Model.Clan != null) { @Html.PrintClan(Model.Clan, true, true); }
else if (Model.Faction != null) { @Html.PrintFaction(Model.Faction, true); }
</div>
</td>
</tr>
Expand Down Expand Up @@ -244,7 +244,7 @@
</div>


@if (Global.IsModerator)
if (Global.IsModerator)
{
<div class="admin">
@Html.ActionLink("Admin user", "AdminUserDetail", "Users", new { id = Model.AccountID }, null)
Expand Down
1 change: 1 addition & 0 deletions Zero-K.info/asp.net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -666,6 +666,7 @@
<Content Include="Img\galaxies\origin.txt" />
<Content Include="Img\galaxies\render_19.jpg" />
<Content Include="Img\galaxies\render_24.jpg" />
<Content Include="Img\help.png" />
<Content Include="Img\hof\r1_clans.jpg" />
<Content Include="Img\hof\r1_map.jpg" />
<Content Include="Img\hof\r1_winner.jpg" />
Expand Down

0 comments on commit 9d6ea62

Please sign in to comment.