mirror of
https://github.com/lempamo/Project-Unite.git
synced 2025-02-02 13:07:34 +00:00
Show followed and followers on profile
This commit is contained in:
parent
cd73cc80d1
commit
f5093b6ee3
1 changed files with 24 additions and 0 deletions
|
@ -68,4 +68,28 @@
|
|||
</div>
|
||||
}
|
||||
</div>
|
||||
<div class="col-xs-3">
|
||||
<div class="panel">
|
||||
<div class="panel-body">
|
||||
<h4>Followers</h4>
|
||||
<ul>
|
||||
@foreach(var f in Model.Followers)
|
||||
{
|
||||
<li>@Html.UserLink(f.Follower)</li>
|
||||
}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel">
|
||||
<div class="panel-body">
|
||||
<h4>Following</h4>
|
||||
<ul>
|
||||
@foreach (var f in Model.Followed)
|
||||
{
|
||||
<li>@Html.UserLink(f.Followed)</li>
|
||||
}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Loading…
Add table
Reference in a new issue