@using Petwork.Web.Models.Miniperson @model Question @{ ViewBag.Title = "QuestionDetails"; Layout = "~/Views/Shared/_LayoutThreeBars.cshtml"; }
@Model.Answers.Count answers @if (Model.AcceptedAnswer != null) { @Html.Partial("AcceptAnswer"); }

@Model.Title

@Model.Content

@foreach (var tag in Model.QuestionTags) { @tag.Tag }

@Html.Partial("_AnswerList") @section sidebar{ @Html.Partial("_SidebarQuestions") }