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/ProblemClass/Index.aspx

    r6290 r6304  
    1616
    1717<%  long? id = null;  %>
    18     <%: Html.ActionLink("New ProblemClass", "Detail", new {id}) %>
    19     <%: Html.ActionLink("Order ASC", "SortAsc")%>
    20     <%: Html.ActionLink("Order DESC", "SortDesc")%>
     18<div class="hl-menuButtons">
     19    <%: Html.ActionLink("New ProblemClass", "Detail", new { id }, new { @class = "hl-button-text-plus" })%>
     20</div>
    2121
    22     <div style="height:150px; overflow:scroll;">
    23         <table>
     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>
    2431            <!--// We get this from the Controller (Index)-->
    2532            <% foreach (ProblemClass p in ((ProblemClassModel)Model).ProblemClasses) {  %>
     
    3138                    <%: Html.Label(p.Description) %>
    3239                </td>
    33                 <td>
    34                     <%: Html.ActionLink("detail", "Detail", 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" })%>
    3543                </td>
    36                 <td>
    37                     <%: Html.ActionLink("delete", "Delete",new {p.Id}) %>
    38                 </td>
     44
    3945            </tr>
    4046            <% } %>
     47        </tbody>
    4148        </table>
    42     </div>       
     49 
    4350</asp:Content>
Note: See TracChangeset for help on using the changeset viewer.