mirror of
https://github.com/lempamo/Project-Unite.git
synced 2025-04-21 00:30:23 +00:00
Add bodies to post panels.
This commit is contained in:
parent
0949277bd1
commit
1041eb760b
2 changed files with 4 additions and 0 deletions
|
@ -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>
|
|
@ -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>
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue