20 lines
No EOL
400 B
Text
20 lines
No EOL
400 B
Text
@model IEnumerable<BlogPostViewModel>
|
|
|
|
@{
|
|
ViewBag.Title = "Manage posts";
|
|
}
|
|
|
|
<table>
|
|
<thead><tr>
|
|
<td>Title</td>
|
|
<td colspan="3">Action</td>
|
|
</tr></thead>
|
|
@foreach (var post in Model) {
|
|
<tr>
|
|
<td>@post.Title</td>
|
|
<td><a href="edit?id=@post.Id">Edit</a></td>
|
|
<td><a href="publish?id=@post.Id">Publish</a></td>
|
|
<td><a href="delete?id=@post.Id">Delete</a></td>
|
|
</tr>
|
|
}
|
|
</table> |