- Timestamp:
- 06/05/13 14:09:51 (12 years ago)
- Location:
- branches/OaaS/HeuristicLab.Services.Optimization.Web
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OaaS/HeuristicLab.Services.Optimization.Web
- Property svn:ignore
-
old new 1 1 bin 2 2 obj 3 Bin
-
- Property svn:ignore
-
branches/OaaS/HeuristicLab.Services.Optimization.Web/Views/Order/SaveOrder.cshtml
r9582 r9586 28 28 } 29 29 else { 30 <h2>Choose one of your payment options:</h2> 30 31 foreach (var pi in Model.User.PaymentInformation) { 32 <p> 31 33 @Html.Label("PaymentInformationId", string.Format("{0} ({1})", pi.PaymentMethod, pi.CardNumber)) 32 @Html.RadioButton("PaymentInformationId", pi.PaymentInformationId); 34 @Html.RadioButton("PaymentInformationId", pi.PaymentInformationId) 35 </p> 33 36 } 34 <h 2>Or add payment information by clicking @Html.ActionLink("here", "Payment").</h2>37 <h3>Or add payment information by clicking @Html.ActionLink("here", "Payment").</h3> 35 38 36 39 using (Html.BeginForm("SaveOrder", "Order")) { 37 40 <h2>How often would you like to be billed?</h2> 38 41 <p> 39 42 @Html.RadioButtonForEnum(m => m.BillingPeriod) 40 43 </p> 41 44 <h2>Would you like to pay upfront or at the end of the period?</h2> 42 45 <p> 43 46 @Html.RadioButtonForEnum(m => m.BillingType) 44 45 <div> 47 </p> 46 48 <p> 47 49 <input type="submit" value="Save order" /> 48 50 </p> 49 </div>50 51 } 51 52 }
Note: See TracChangeset
for help on using the changeset viewer.