Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OaaS/HeuristicLab.Services.Optimization.Web/Views/Optimization/Index.cshtml @ 9166

Last change on this file since 9166 was 9166, checked in by fschoepp, 11 years ago

#1888:

  • Model: OptimizationScenario may be a tree of algorithms (and problems)
  • Model: Renamed InputParameters to ProblemParameters (as they are the parameters of a problem)
  • Model: Added JobExecutionDetails which contain Repetitions + Group (resource to use)
  • ScenarioParser parses the new XML scenario files
  • Website + Model: You are now able to add/remove rows from a table (no JavaScript involved yet)
  • Website + Controller: Added repetitions (enables batch jobs) and group (resource to use) to OaaS which will be used by the controller to schedule the job
  • Website: Updated templates to use new model structure
  • Website + Scenarios: Added the new algorithm Benchmark Algorithm
  • Controller: Added a singleton to make the (Azure/Mockup)-DAL exchangeable
  • Controller: Added mockup classes for DAL + IScenarioManager
  • Website/Result Page: Line Diagrams will be added via JavaScript, crawling their data using AJAX
  • Website: Most configuration parameters can be set in the ServiceDefinition directly
  • Added a mockup for the Membership classes: These can be used if no network connection is available or if other parts of the app shall be tested
  • Scenarios: Updated TSP mappings to new xsd
File size: 849 bytes
Line 
1@model HeuristicLab.Services.Optimization.Web.Models.OptimizationModel
2
3@{
4    ViewBag.Title = "Optimization-as-a-Service";
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.Id, "ProblemParameters", new { scenario=itm.Id })</li>
35}
36</ul>
Note: See TracBrowser for help on using the repository browser.