Free cookie consent management tool by TermsFeed Policy Generator

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

#1198 Ongoing styling

File:
1 edited

Legend:

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

    r6290 r6304  
    2323        Algorithm p = ((AlgorithmModel)Model).Algorithm;
    2424    %>
    25     <table border="1">
     25
     26            <div class="hl-menuButtons">                 
     27        <%: Html.ActionLink("Back to Index", "Index", null, new { @class = "hl-button-text-back" })%>
     28        </div>
     29
     30    <table class="hl-table">
    2631        <tr>
    27             <td>
     32            <th>
    2833                Id:
    29             </td>
     34            </th>
    3035            <td>
    3136                <%: Html.Label(p.Id.ToString())%>
     
    3439        </tr>
    3540        <tr>
    36             <td>
     41            <th>
    3742                Name:
    38             </td>
     43            </th>
    3944            <td>
    4045                <%: Html.TextBox("AlgorithmName", p.Name, p.Name)%>
     
    4247        </tr>
    4348        <tr>
    44             <td>
     49            <th>
    4550                Description:
    46             </td>
     51            </th>
    4752            <td>
    4853                <%: Html.TextBox("AlgorithmDescription", p.Description, p.Description)%>
     
    5055        </tr>
    5156        <tr>
    52             <td>
     57            <th>
    5358                DataTypeName:
    54             </td>
     59            </th>
    5560            <td>
    5661                <%: Html.TextBox("AlgorithmDataTypeName", p.DataTypeName, p.DataTypeName)%>
     
    5863        </tr>
    5964        <tr>
    60             <td>
     65            <th>
    6166                Algorith Class:
    62             </td>
     67            </th>
    6368            <td>
    6469                <select name="AlgorithmClassId">
     
    7479        </tr>
    7580        <tr>
    76             <td>
     81            <th>
    7782                Platform:
    78             </td>
     83            </th>
    7984            <td>
    8085                <select name="PlatformId">
     
    9095        </tr>
    9196        <tr>
    92             <td>
     97            <th>
    9398                Action:
    94             </td>
     99            </th>
    95100            <td>
    96101                <input type="submit" value="save" />
     
    104109    {%><br />
    105110        <% Algorithm p = ((AlgorithmModel)Model).Algorithm; %>       
    106         <table border="1">
     111        <table class="hl-table">
    107112            <tr>
    108                 <td>
     113                <th>
    109114                    File:
    110                 </td>
     115                </th>
    111116                <td>
    112117                    <%: Html.Hidden("AlgorithmId", p.Id.ToString(), p.Id.ToString())%>
     
    115120            </tr>
    116121            <tr>
    117                 <td>
     122                <th>
    118123                    Action:
    119                 </td>
     124                </th>
    120125                <td>
    121126                    <input type="submit" value="Upload file" />
    122127                </td>
    123128            </tr>
    124         </table>                              
    125         <%: Html.ActionLink("back to Index","Index") %>
     129        </table>
     130
    126131        <% } %>
    127132       
Note: See TracChangeset for help on using the changeset viewer.