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

Location:
branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/AlgorithmClass
Files:
2 edited

Legend:

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

    r6290 r6304  
    1313    <% { %>
    1414    <h2>Detail</h2>
    15 
     15            <div class="hl-menuButtons">                 
     16        <%: Html.ActionLink("Back to Index", "Index", null, new { @class = "hl-button-text-back" })%>
     17        </div>
    1618    <% AlgorithmClass ac = ((AlgorithmClassModel)Model).AlgorithmClass; %>
    17     <table border="1">
     19    <table class="hl-table">
    1820        <tr>
    19             <td>
     21            <th>
    2022                Id:
    21             </td>
     23            </th>
    2224            <td>
    2325                <%: Html.Label(ac.Id.ToString())%>
     
    2628        </tr>
    2729        <tr>
    28             <td>
     30            <th>
    2931                Name:
    30             </td>
     32            </th>
    3133            <td>
    3234                <%: Html.TextBox("AlgorithmClassName", ac.Name, ac.Name)%>
     
    3436        </tr>
    3537        <tr>
    36             <td>
     38            <th>
    3739                Description:
    38             </td>
     40            </th>
    3941            <td>
    4042                <%: Html.TextBox("AlgorithmClassDescription", ac.Description, ac.Description)%>
     
    4244        </tr>
    4345        <tr>
    44             <td>
     46            <th>
    4547                Action:
    46             </td>
     48            </th>
    4749            <td>
    4850                <input type="submit" value="save" />
     
    5052        </tr>
    5153    </table>
    52     <%: Html.ActionLink("back to Index","Index") %>
     54   
    5355    <% } %>
    5456</asp:Content>
  • branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/AlgorithmClass/Index.aspx

    r6290 r6304  
    1515
    1616<%  long? id = null;  %>
    17     <%: Html.ActionLink("New AlgorithmClass", "Detail", new {id}) %>
    18     <%: Html.ActionLink("Order ASC", "SortAsc")%>
    19     <%: Html.ActionLink("Order DESC", "SortDesc")%>
     17<div class="hl-menuButtons">
     18    <%: Html.ActionLink("New AlgorithmClass", "Detail", new { id }, new { @class = "hl-button-text-plus" })%>
     19</div>
    2020
    21     <div style="height:150px; overflow:scroll;">
    22         <table>
     21
     22        <table class="hl-dataTable">
     23        <thead>
     24        <tr>
     25        <th>Name</th>
     26        <th>Description</th>
     27        <th>Actions</th>
     28        </tr>
     29        </thead>
     30        <tbody>
    2331            <!--// We get this from the Controller (Index)-->
    2432            <% foreach (AlgorithmClass p in ((AlgorithmClassModel)Model).AlgorithmClasses) {  %>
     
    3038                    <%: Html.Label(p.Description) %>
    3139                </td>
    32                 <td>
    33                     <%: Html.ActionLink("detail", "Detail", new { p.Id })%>
    34                 </td>
    35                 <td>
    36                     <%: Html.ActionLink("delete", "Delete",new {p.Id}) %>
     40                <td class="hl-iconcell">
     41                    <%: Html.ActionLink("detail", "Detail", new { p.Id }, new { @class = "hl-icon-edit" })%>
     42                    <%: Html.ActionLink("delete", "Delete", new { p.Id }, new { @class = "hl-icon-delete" })%>
    3743                </td>
    3844            </tr>
    3945            <% } %>
     46            </tbody>
    4047        </table>
    41     </div>       
     48 
    4249</asp:Content>
Note: See TracChangeset for help on using the changeset viewer.