35 lines
814 B
Plaintext
35 lines
814 B
Plaintext
@model List<OnlinePluginViewModel>
|
|
|
|
@{
|
|
ViewData["Title"] = "Online Plugins";
|
|
}
|
|
|
|
<h2>@ViewData["Title"]</h2>
|
|
|
|
<table class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Description</th>
|
|
<th>Author</th>
|
|
<th>Version</th>
|
|
<th>Download</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var plugin in Model)
|
|
{
|
|
<tr>
|
|
<td>@plugin.Name</td>
|
|
<td>@plugin.Description</td>
|
|
<td>@plugin.Author</td>
|
|
<td>@plugin.Version</td>
|
|
<td>
|
|
<form method="post" asp-action="InstallPlugin" asp-route-pluginId="@plugin.Id">
|
|
<button type="submit" class="btn btn-primary">Download</button>
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table> |