Last change
on this file since 9137 was
9062,
checked in by fschoepp, 12 years ago
|
#1888:
Backend changes:
- Simplified job state detection (only one hive call will be made to detect all states now, instead of one additional call per job)
- Reorganized classes (moved model classes into Model folder)
Website changes:
- Website now heavily uses JavaScript to achieve better user experience
- JavaScript degrades gracefully, except for plots
- Tables: Added jquery-datatable-plugin to extend tables (pagination + search functionality)
- OaaS-Website now uses the design of the HL websites (found in WebApplication branch)
- Added jqplot to render zoomable line plots for HL-Datatables
- Styling.js: Plots will be generated by using an ajax call; additional jquery-styling occurs within this file.
- Added jquery-ui-1.9.2 which is capable of handling/rendering tabs, accordions and resizers.
|
File size:
833 bytes
|
Line | |
---|
1 | @model HeuristicLab.Services.Optimization.Web.Models.OptimizationModel
|
---|
2 |
|
---|
3 | @{
|
---|
4 | ViewBag.Title = "Index";
|
---|
5 | }
|
---|
6 |
|
---|
7 | <h2>Your jobs:</h2>
|
---|
8 | <table class="viewableTable">
|
---|
9 | <thead>
|
---|
10 | <tr>
|
---|
11 | <th>Name</th>
|
---|
12 | <th>Created at</th>
|
---|
13 | <th>Resource</th>
|
---|
14 | <th>State</th>
|
---|
15 | </tr>
|
---|
16 | </thead>
|
---|
17 | <tbody>
|
---|
18 | @foreach(var itm in Model.Jobs) {
|
---|
19 | <tr>
|
---|
20 | <td>@Html.ActionLink(itm.Name, "JobDetails", new { jobId = itm.Id })</td>
|
---|
21 | <td>@itm.DateCreated</td>
|
---|
22 | <td>@itm.Resource</td>
|
---|
23 | <td>@itm.State</td>
|
---|
24 | </tr>
|
---|
25 | }
|
---|
26 | </tbody>
|
---|
27 | </table>
|
---|
28 | <div class="spacer"></div>
|
---|
29 |
|
---|
30 | <h2>Choose your scenario:</h2>
|
---|
31 |
|
---|
32 | <ul>
|
---|
33 | @foreach (var itm in Model.Scenarios) {
|
---|
34 | <li>@Html.ActionLink(itm.Name, "ProblemParameters", new { scenario=itm.Name })</li>
|
---|
35 | }
|
---|
36 | </ul> |
---|
Note: See
TracBrowser
for help on using the repository browser.