- Timestamp:
- 05/27/11 13:12:25 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Problem/Detail.aspx
r6290 r6304 23 23 Problem p = ((ProblemModel)Model).Problem; 24 24 %> 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"> 26 29 <tr> 27 <t d>30 <th> 28 31 Id: 29 </t d>32 </th> 30 33 <td> 31 34 <%: Html.Label(p.Id.ToString())%> … … 34 37 </tr> 35 38 <tr> 36 <t d>39 <th> 37 40 Name: 38 </t d>41 </th> 39 42 <td> 40 43 <%: Html.TextBox("ProblemName", p.Name, p.Name)%> … … 42 45 </tr> 43 46 <tr> 44 <t d>47 <th> 45 48 Description: 46 </t d>49 </th> 47 50 <td> 48 51 <%: Html.TextBox("ProblemDescription", p.Description, p.Description)%> … … 50 53 </tr> 51 54 <tr> 52 <t d>55 <th> 53 56 DataTypeName: 54 </t d>57 </th> 55 58 <td> 56 59 <%: Html.TextBox("ProblemDataTypeName", p.DataTypeName, p.DataTypeName)%> … … 58 61 </tr> 59 62 <tr> 60 <t d>63 <th> 61 64 Problem Class: 62 </t d>65 </th> 63 66 <td> 64 67 <select name="ProblemClassId"> … … 74 77 </tr> 75 78 <tr> 76 <t d>79 <th> 77 80 Platform: 78 </t d>81 </th> 79 82 <td> 80 83 <select name="PlatformId"> … … 90 93 </tr> 91 94 <tr> 92 <t d>95 <th> 93 96 Action: 94 </t d>97 </th> 95 98 <td> 96 99 <input type="submit" value="save" /> … … 104 107 {%><br /> 105 108 <% Problem p = ((ProblemModel)Model).Problem; %> 106 <table border="1">109 <table class="hl-table"> 107 110 <tr> 108 <t d>111 <th> 109 112 File: 110 </t d>113 </th> 111 114 <td> 112 115 <%: Html.Hidden("ProblemId", p.Id.ToString(), p.Id.ToString()) %> … … 115 118 </tr> 116 119 <tr> 117 <t d>120 <th> 118 121 Action: 119 </t d>122 </th> 120 123 <td> 121 124 <input type="submit" value="Upload file" /> … … 123 126 </tr> 124 127 </table> 125 <%: Html.ActionLink("back to Index","Index") %>126 128 <% } %> 127 129
Note: See TracChangeset
for help on using the changeset viewer.