Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/25/16 16:48:19 (9 years ago)
Author:
jlodewyc
Message:

#2582 RC2 migration fixed. OKB query implemented. Preparing for OKB manager

Location:
branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/Job
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/Job/Index.cshtml

    r13847 r13860  
    11@using HeuristicLab.Clients.Hive.WebJobManager.ViewModels
     2
    23@model JobViewModel
    34
     
    56
    67<div id="userId" style="display:none">@ViewBag.SessionId</div>
    7 <div>
     8<div class="animated fadeIn">
    89    <!-- Main nav menu-->
    910    @Html.Partial("Navbar", new NavbarViewModel("Job", Model.currentUser))
     
    3031
    3132    <div class="row"
    32          style="padding:10px; margin-right:0px!important">
     33         style="padding:10px; margin-right:0!important">
    3334        @if (Model.userJobs.Count == 0)
    3435            {
     
    6263                            @job.Job.Name - @job.Job.DateCreated
    6364                            <span style="text-shadow:2px 2px black; font-size:13px"
    64                                   class="label
     65                                  class="label label-as-badge
    6566                                   @(job.Job.FinishedCount == @job.Job.JobCount ? "label-success" : "label-default")
    66                                    label-as-badge pull-right">
     67                                    pull-right">
    6768                                <strong>@job.Job.FinishedCount / @job.Job.JobCount</strong>
    6869                            </span>
     
    99100                                </a>
    100101                                <!-- HIDDEN BUTTON FOR ASP ACTION -->
    101                                 <a style="display:none; " 
     102                                <a style="display:none; "
    102103                                   asp-action="Delete"
    103104                                   asp-route-id="@Model.selectedJob.Id"
     
    146147                            @Html.Partial("_Graphlegend")
    147148                            <!-- Main graph giving overview of all the jobs-->
    148                             <div id="graphMain" style="width:100%;height:0px">
     149                            <div id="graphMain" style="width:100%;height:0">
    149150
    150151                            </div>
  • branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/Job/OpenFile.cshtml

    r13847 r13860  
    1 @using Microsoft.AspNet.Http;
     1
    22
    33@model HeuristicLab.Clients.Hive.WebJobManager.ViewModels.FileOpeningViewModel
     
    66<!-- Another body used for the side scroller menu-->
    77<body id="top"
    8       class="row"
     8      class="row "
    99      data-spy="scroll"
    1010      data-target="#scrolly"
  • branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/Job/Uploads.cshtml

    r13847 r13860  
    33
    44<!-- Shows uploaded files and the uploader -->
    5 <div>
     5<div class="animated fadeIn">
    66
    77    @Html.Partial("Navbar", new HeuristicLab.Clients.Hive.WebJobManager.ViewModels.NavbarViewModel("Job", Model.currentUser))
Note: See TracChangeset for help on using the changeset viewer.