Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 9426 was 9166, checked in by fschoepp, 12 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
RevLine 
[8545]1@model HeuristicLab.Services.Optimization.Web.Models.OptimizationModel
[8384]2
3@{
[9166]4    ViewBag.Title = "Optimization-as-a-Service";
[8384]5}
6
[8545]7<h2>Your jobs:</h2>
[9062]8<table class="viewableTable">
[8545]9  <thead>
10    <tr>
[9062]11      <th>Name</th>
12      <th>Created at</th>
13      <th>Resource</th>
14      <th>State</th>   
[8545]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>
[9062]21            <td>@itm.DateCreated</td>
[8545]22            <td>@itm.Resource</td>
23            <td>@itm.State</td>           
24        </tr>
25    }
26  </tbody>
27</table>
[9062]28<div class="spacer"></div>
[8545]29
[9062]30<h2>Choose your scenario:</h2>
[8384]31
32<ul>
[8545]33@foreach (var itm in Model.Scenarios) {
[9166]34    <li>@Html.ActionLink(itm.Id, "ProblemParameters", new { scenario=itm.Id })</li>
[8384]35}
[8506]36</ul>
Note: See TracBrowser for help on using the repository browser.