24 lines
434 B
Plaintext
24 lines
434 B
Plaintext
@model ShowLinkViewModel
|
|
@{
|
|
ViewData["Title"] = "Viewing";
|
|
}
|
|
|
|
<partial name="_LinkItem" model="@Model.Link" />
|
|
|
|
@if (Model.Comments.Length == 0)
|
|
{
|
|
<p class="no-comment-yet">No comments yet</p>
|
|
}
|
|
else
|
|
{
|
|
<ul class="comments">
|
|
@foreach (var comment in Model.Comments)
|
|
{
|
|
<li>
|
|
<partial name="_CommentItem" model="@comment" />
|
|
</li>
|
|
}
|
|
</ul>
|
|
}
|
|
|
|
<partial name="_CommentForm" model="@Model.CommentForm" /> |