Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/27/11 13:12:25 (13 years ago)
Author:
dkahn
Message:

#1198 Ongoing styling

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Problem/Detail.aspx

    r6290 r6304  
    2323        Problem p = ((ProblemModel)Model).Problem;
    2424    %>
    25     <table border="1">
     25            <div class="hl-menuButtons">                 
     26        <%: Html.ActionLink("Back to Index", "Index", null, new { @class = "hl-button-text-back" })%>
     27        </div>
     28    <table class="hl-table">
    2629        <tr>
    27             <td>
     30            <th>
    2831                Id:
    29             </td>
     32            </th>
    3033            <td>
    3134                <%: Html.Label(p.Id.ToString())%>
     
    3437        </tr>
    3538        <tr>
    36             <td>
     39            <th>
    3740                Name:
    38             </td>
     41            </th>
    3942            <td>
    4043                <%: Html.TextBox("ProblemName", p.Name, p.Name)%>
     
    4245        </tr>
    4346        <tr>
    44             <td>
     47            <th>
    4548                Description:
    46             </td>
     49            </th>
    4750            <td>
    4851                <%: Html.TextBox("ProblemDescription", p.Description, p.Description)%>
     
    5053        </tr>
    5154        <tr>
    52             <td>
     55            <th>
    5356                DataTypeName:
    54             </td>
     57            </th>
    5558            <td>
    5659                <%: Html.TextBox("ProblemDataTypeName", p.DataTypeName, p.DataTypeName)%>
     
    5861        </tr>
    5962        <tr>
    60             <td>
     63            <th>
    6164                Problem Class:
    62             </td>
     65            </th>
    6366            <td>
    6467                <select name="ProblemClassId">
     
    7477        </tr>
    7578        <tr>
    76             <td>
     79            <th>
    7780                Platform:
    78             </td>
     81            </th>
    7982            <td>
    8083                <select name="PlatformId">
     
    9093        </tr>
    9194        <tr>
    92             <td>
     95            <th>
    9396                Action:
    94             </td>
     97            </th>
    9598            <td>
    9699                <input type="submit" value="save" />
     
    104107    {%><br />
    105108        <% Problem p = ((ProblemModel)Model).Problem; %>       
    106         <table border="1">
     109        <table class="hl-table">
    107110            <tr>
    108                 <td>
     111                <th>
    109112                    File:
    110                 </td>
     113                </th>
    111114                <td>
    112115                    <%: Html.Hidden("ProblemId", p.Id.ToString(), p.Id.ToString()) %>
     
    115118            </tr>
    116119            <tr>
    117                 <td>
     120                <th>
    118121                    Action:
    119                 </td>
     122                </th>
    120123                <td>
    121124                    <input type="submit" value="Upload file" />
     
    123126            </tr>
    124127        </table>                             
    125         <%: Html.ActionLink("back to Index","Index") %>
    126128        <% } %>
    127129       
Note: See TracChangeset for help on using the changeset viewer.