@model Petwork.Web.Models.Profile.DisplayPersonalModel
@{
ViewBag.Title = string.Format("Profilo di {0}", ViewBag.Target.FullName);
Layout = "~/Views/Shared/_LayoutUserThreeBars.cshtml";
Html.DoSelect("Sidebar", "Wall");
}
@if (Model.Profile.Address.City != null)
{
- @Resources.Profile.LivesIn @Model.Profile.Address.City.DistinguishName
}
- @Resources.Profile.Born @Model.Profile.BirthDate.ToString("D")
- @Resources.Profile.FavoritePetSpecies @Model.Profile.FavoriteSpecie
- @Resources.Profile.Owns @Model.Account.GetPetSummary()
@foreach (var photo in @Model.PhotoSample)
{
-
}
@if (!ViewBag.IsMeOrIamFriend)
{
@Resources.Profile.ShowOnlyFriendsWall
}
else
{
@Html.Action("DisplayStream", "Wall", new { Model.Account.Wall.Id })
}