- Timestamp:
- 05/27/11 19:09:49 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Algorithm/Index.aspx
r6310 r6317 14 14 <% long? id = null; %> 15 15 <div class="hl-menuButtons"> 16 <%: Html.ActionLink("New Algorithm", "Detail", new { id }, new { @class = "hl-button-text-plus" })%>16 <%: Html.ActionLink("New Algorithm", "Detail", new { id }, new { @class = "hl-button-text-plus" })%> 17 17 </div> 18 18 <table class="hl-dataTable"> 19 19 <thead> 20 20 <tr> 21 <th>Name</th> 22 <th>Description</th> 23 <th>Type</th> 24 <th>Actions</th> 21 <th> 22 Name 23 </th> 24 <th> 25 Description 26 </th> 27 <th> 28 Type 29 </th> 30 <th> 31 Actions 32 </th> 25 33 </tr> 26 34 </thead> … … 38 46 <%: p.DataTypeName %> 39 47 </td> 40 41 42 43 48 <td class="hl-iconcell"> 49 <%: Html.ActionLink("detail", "Detail", new { p.Id }, new { @class = "hl-icon-edit" })%> 50 <%: Html.ActionLink("delete", "Delete", new { p.Id }, new { @class = "hl-icon-delete" })%> 51 </td> 44 52 </tr> 45 53 <% } %>
Note: See TracChangeset
for help on using the changeset viewer.