Add bodies to post panels.

This commit is contained in:
Michael 2017-03-24 12:11:07 -04:00
parent 0949277bd1
commit 1041eb760b
2 changed files with 4 additions and 0 deletions

View file

@ -47,6 +47,7 @@
{
<div class="panel">
<div class="panel-body">
<p><strong>Posted on @post.PostedAt</strong>:</p>
<p>@Html.Markdown(post.PostContents)</p>
<ul class="nav nav-pills">
@ -64,6 +65,7 @@
</ul>
</div>
</div>
}
</div>
</div>

View file

@ -1,6 +1,7 @@
@model Project_Unite.Models.UserPost
<div class="panel">
<div class="panel-body">
@using (Html.BeginForm("PostContent", "Profiles"))
{
@Html.AntiForgeryToken()
@ -9,6 +10,7 @@
<input type="submit" class="btn btn-default" value="Post" />
}
</div>
</div>