diff options
| -rw-r--r-- | Project-Unite/Views/Profiles/ViewProfile.cshtml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Project-Unite/Views/Profiles/ViewProfile.cshtml b/Project-Unite/Views/Profiles/ViewProfile.cshtml index 171d37f..a5a5196 100644 --- a/Project-Unite/Views/Profiles/ViewProfile.cshtml +++ b/Project-Unite/Views/Profiles/ViewProfile.cshtml @@ -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>
\ No newline at end of file |
