- Timestamp:
- 05/25/16 16:48:19 (9 years ago)
- 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 1 1 @using HeuristicLab.Clients.Hive.WebJobManager.ViewModels 2 2 3 @model JobViewModel 3 4 … … 5 6 6 7 <div id="userId" style="display:none">@ViewBag.SessionId</div> 7 <div >8 <div class="animated fadeIn"> 8 9 <!-- Main nav menu--> 9 10 @Html.Partial("Navbar", new NavbarViewModel("Job", Model.currentUser)) … … 30 31 31 32 <div class="row" 32 style="padding:10px; margin-right:0 px!important">33 style="padding:10px; margin-right:0!important"> 33 34 @if (Model.userJobs.Count == 0) 34 35 { … … 62 63 @job.Job.Name - @job.Job.DateCreated 63 64 <span style="text-shadow:2px 2px black; font-size:13px" 64 class="label 65 class="label label-as-badge 65 66 @(job.Job.FinishedCount == @job.Job.JobCount ? "label-success" : "label-default") 66 label-as-badgepull-right">67 pull-right"> 67 68 <strong>@job.Job.FinishedCount / @job.Job.JobCount</strong> 68 69 </span> … … 99 100 </a> 100 101 <!-- HIDDEN BUTTON FOR ASP ACTION --> 101 <a style="display:none; " 102 <a style="display:none; " 102 103 asp-action="Delete" 103 104 asp-route-id="@Model.selectedJob.Id" … … 146 147 @Html.Partial("_Graphlegend") 147 148 <!-- Main graph giving overview of all the jobs--> 148 <div id="graphMain" style="width:100%;height:0 px">149 <div id="graphMain" style="width:100%;height:0"> 149 150 150 151 </div> -
branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/Job/OpenFile.cshtml
r13847 r13860 1 @using Microsoft.AspNet.Http;1 2 2 3 3 @model HeuristicLab.Clients.Hive.WebJobManager.ViewModels.FileOpeningViewModel … … 6 6 <!-- Another body used for the side scroller menu--> 7 7 <body id="top" 8 class="row "8 class="row " 9 9 data-spy="scroll" 10 10 data-target="#scrolly" -
branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/Job/Uploads.cshtml
r13847 r13860 3 3 4 4 <!-- Shows uploaded files and the uploader --> 5 <div >5 <div class="animated fadeIn"> 6 6 7 7 @Html.Partial("Navbar", new HeuristicLab.Clients.Hive.WebJobManager.ViewModels.NavbarViewModel("Job", Model.currentUser))
Note: See TracChangeset
for help on using the changeset viewer.