mirror of
https://github.com/lempamo/Project-Unite.git
synced 2025-03-14 03:50:23 +00:00
27 lines
No EOL
808 B
Text
27 lines
No EOL
808 B
Text
@model Project_Unite.Models.ApplicationUser
|
|
@{
|
|
ViewBag.Title = Model.DisplayName;
|
|
ViewBag.Banner = Model.BannerUrl;
|
|
}
|
|
|
|
<div class="row">
|
|
<h3>
|
|
<img src="@Model.AvatarUrl" width="64" height="64" /> @if (string.IsNullOrWhiteSpace(Model.FullName))
|
|
{ <strong> @Model.DisplayName </strong>}
|
|
else
|
|
{
|
|
<strong>@Model.FullName</strong> <em>(@Model.DisplayName)</em>}
|
|
</h3>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-xs-4">
|
|
<h4>User stats</h4>
|
|
<ul>
|
|
<li><strong>@Model.Codepoints</strong> Codepoints</li>
|
|
<li><strong>Joined at: </strong>@Model.JoinedAt</li>
|
|
<li><strong>Posts: </strong>@Model.PostCount</li>
|
|
<li><strong>Topics: </strong>@Model.TopicCount</li>
|
|
</ul>
|
|
</div>
|
|
</div> |