Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Problem/Index.aspx @ 6142

Last change on this file since 6142 was 6142, checked in by gschwarz, 13 years ago

#1433 Updated Problem Control/View

File size: 1.1 KB
Line 
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">
6    Index
7</asp:Content>
8<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
9    <h2>Problems</h2>
10    <div style="height:150px; overflow:scroll;">
11        <table>
12            <!--// We get this from the Controller (Index)-->
13            <% foreach(Problem p in ((ProblemModel)Model).Problems) {  %>
14            <tr>
15                <td>
16                    <%: Html.ActionLink(p.Name, "Detail",new {p.Id}) %>
17                </td>
18                <td>
19                    <%: Html.Label(p.Description) %>
20                </td>
21                <td>
22                    <%: Html.Label(p.DataTypeName)%>
23                </td>
24            </tr>
25            <% } %>
26        </table>
27    </div>
28
29     
30    <h2>Create new Problem</h2>
31 
32       
33</asp:Content>
Note: See TracBrowser for help on using the repository browser.