Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OaaS/HeuristicLab.Services.Optimization.Web/Views/Experiment/Edit.cshtml @ 9215

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

#1888:

  • Janitor is now working as expected in Windows Azure
  • Added basic support for experiments (draggable experiments)
  • Added methods to save/read experiments from TableStorage
  • The job status can now be retrieved by using the GetTasks/GetTaskData methods
  • Added a class to convert JSON-objects to Algorithm instances
  • Web page: Added experiment button to navigation
File size: 536 bytes
Line 
1@model HeuristicLab.Services.Optimization.Web.Models.ExperimentViewModel
2
3@{
4    ViewBag.Title = "Edit";
5}
6
7<h2>Edit your experiments</h2>
8
9<ul>
10@foreach (var exp in Model.Experiments) {
11   <li>@Html.ActionLink("Delete " + exp, "DeleteExperiment", new { experiment = exp })</li>
12}
13</ul>
14
15@section submenu {
16    <ul>
17        <li>@Html.ActionLink("Build", "Index")</li>   
18        <li class="selected">@Html.ActionLink("Edit", "Edit")</li>
19        <li>@Html.ActionLink("Status", "Index", "Status")</li>
20    </ul>
21}
Note: See TracBrowser for help on using the repository browser.