Last change
on this file was
9556,
checked in by fschoepp, 11 years ago
|
#1888:
- Added views for the billing component (Register users, Create orders and Activate Orders view)
- Added a mockup for the billing back-end .
|
File size:
1.1 KB
|
Line | |
---|
1 | @model HeuristicLab.Services.Optimization.Web.Models.OrderModel
|
---|
2 |
|
---|
3 | <h2>Add Order</h2>
|
---|
4 |
|
---|
5 | @using (Html.BeginForm("CreateOrder", "Order")) {
|
---|
6 | <div>
|
---|
7 | <fieldset>
|
---|
8 | <legend>Order Information</legend>
|
---|
9 | <div class="editor-label">
|
---|
10 | @Html.LabelFor(m => m.BillingPeriod)
|
---|
11 | </div>
|
---|
12 | <div class="editor-field">
|
---|
13 | @Html.TextBoxFor(m => m.BillingPeriod)
|
---|
14 | @Html.ValidationMessageFor(m => m.BillingPeriod)
|
---|
15 | </div>
|
---|
16 |
|
---|
17 | <div class="editor-label">
|
---|
18 | @Html.LabelFor(m => m.BillingType)
|
---|
19 | </div>
|
---|
20 | <div class="editor-field">
|
---|
21 | @Html.TextBoxFor(m => m.BillingType)
|
---|
22 | </div>
|
---|
23 |
|
---|
24 | <div class="editor-label">
|
---|
25 | @Html.LabelFor(m => m.ActiveUntil)
|
---|
26 | </div>
|
---|
27 | <div class="editor-field">
|
---|
28 | @Html.TextBoxFor(m => m.ActiveUntil)
|
---|
29 | </div>
|
---|
30 |
|
---|
31 | <p>
|
---|
32 | <input type="submit" value="CreateOrder" />
|
---|
33 | </p>
|
---|
34 | </fieldset>
|
---|
35 | </div>
|
---|
36 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.