Last change
on this file since 15802 was
9582,
checked in by fschoepp, 12 years ago
|
#1888:
- Added an overview for users to inspect their orders
- Order Administrators may now suspend or reactivate orders
- When creating an order, its necessary to enter payment information (paypal, credit card,...) before
- Also, the billing period and type must be entered during the creation of an order.
|
File size:
824 bytes
|
Rev | Line | |
---|
[9582] | 1 | @model HeuristicLab.Services.Optimization.Web.Models.PaymentModel
|
---|
| 2 | @using HeuristicLab.Services.Optimization.Web.Helpers
|
---|
| 3 |
|
---|
| 4 |
|
---|
| 5 | @{
|
---|
| 6 | ViewBag.Title = "Payment";
|
---|
| 7 | }
|
---|
| 8 |
|
---|
| 9 | <h2>Enter Payment Information</h2>
|
---|
| 10 |
|
---|
| 11 | @using (Html.BeginForm("SavePayment", "Order")) {
|
---|
| 12 |
|
---|
| 13 | <div class="editor-label">
|
---|
| 14 | @Html.LabelFor(m => m.Method)
|
---|
| 15 | </div>
|
---|
| 16 | <div class="editor-field">
|
---|
| 17 | @Html.RadioButtonForEnum(m => m.Method)
|
---|
| 18 | </div>
|
---|
| 19 |
|
---|
| 20 | <div class="editor-label">
|
---|
| 21 | @Html.LabelFor(m => m.CardNumber)
|
---|
| 22 | </div>
|
---|
| 23 | <div class="editor-field">
|
---|
| 24 | @Html.EditorFor(m => m.CardNumber)
|
---|
| 25 | </div>
|
---|
| 26 |
|
---|
| 27 | <div class="editor-label">
|
---|
| 28 | @Html.LabelFor(m => m.AdditionalInformation)
|
---|
| 29 | </div>
|
---|
| 30 | <div class="editor-field">
|
---|
| 31 | @Html.EditorFor(m => m.AdditionalInformation)
|
---|
| 32 | </div>
|
---|
| 33 | <p>
|
---|
| 34 | <input type="submit" value="Save payment information" />
|
---|
| 35 | </p>
|
---|
| 36 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.