Rev | Line | |
---|
[6130] | 1 | <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>
|
---|
| 2 |
|
---|
| 3 | <%@ Import Namespace="HLWebOKBAdminPlugin.Models" %>
|
---|
| 4 | <%@ Import Namespace="HLWebOKBAdminPlugin.OKBAdministrationService" %>
|
---|
| 5 | <asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
|
---|
[6317] | 6 | Index
|
---|
[6130] | 7 | </asp:Content>
|
---|
[6290] | 8 | <asp:Content ID="Content3" runat="server" ContentPlaceHolderID="SubMenuContent">
|
---|
[6317] | 9 | <% Html.RenderAction("Menu", "Admin"); %>
|
---|
[6290] | 10 | </asp:Content>
|
---|
[6130] | 11 | <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
|
---|
[6317] | 12 | <h2>
|
---|
| 13 | Problems</h2>
|
---|
| 14 | <% long? id = null; %>
|
---|
| 15 | <div class="hl-menuButtons">
|
---|
[6304] | 16 | <%: Html.ActionLink("New Problem", "Detail", new { id }, new { @class = "hl-button-text-plus" })%>
|
---|
[6317] | 17 | </div>
|
---|
| 18 | <table class="hl-dataTable">
|
---|
| 19 | <thead>
|
---|
| 20 | <tr>
|
---|
| 21 | <th>
|
---|
| 22 | Name
|
---|
| 23 | </th>
|
---|
| 24 | <th>
|
---|
| 25 | Description
|
---|
| 26 | </th>
|
---|
| 27 | <th>
|
---|
| 28 | Type
|
---|
| 29 | </th>
|
---|
| 30 | <th>
|
---|
| 31 | Actions
|
---|
| 32 | </th>
|
---|
| 33 | </tr>
|
---|
| 34 | </thead>
|
---|
| 35 | <tbody>
|
---|
| 36 | <!--// We get this from the Controller (Index)-->
|
---|
| 37 | <% foreach (Problem p in ((ProblemModel)Model).Problems) { %>
|
---|
| 38 | <tr>
|
---|
| 39 | <td>
|
---|
| 40 | <%: p.Name%>
|
---|
| 41 | </td>
|
---|
| 42 | <td>
|
---|
| 43 | <%: p.Description %>
|
---|
| 44 | </td>
|
---|
| 45 | <td>
|
---|
| 46 | <%: p.DataTypeName %>
|
---|
| 47 | </td>
|
---|
| 48 | <td class="hl-iconcell">
|
---|
| 49 | <%: Html.ActionLink("detail", "Detail", new { p.Id }, new { @class = "hl-icon-edit" })%>
|
---|
| 50 | <%: Html.ActionLink("delete", "Delete", new { p.Id }, new { @class = "hl-icon-delete" })%>
|
---|
| 51 | </td>
|
---|
| 52 | </tr>
|
---|
| 53 | <% } %>
|
---|
| 54 | </tbody>
|
---|
| 55 | </table>
|
---|
[6130] | 56 | </asp:Content>
|
---|
Note: See
TracBrowser
for help on using the repository browser.