aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/twirl/masterui/job_row.scala.html
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/twirl/masterui/job_row.scala.html')
-rw-r--r--core/src/main/twirl/masterui/job_row.scala.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/core/src/main/twirl/masterui/job_row.scala.html b/core/src/main/twirl/masterui/job_row.scala.html
new file mode 100644
index 0000000000..1d0d1650c0
--- /dev/null
+++ b/core/src/main/twirl/masterui/job_row.scala.html
@@ -0,0 +1,15 @@
+@(job: spark.deploy.master.JobInfo)
+
+<tr>
+ <td>
+ <a href="job?jobId=@(job.id)">@job.id</a>
+ </td>
+ <td>@job.desc</td>
+ <td>
+ @job.coresGranted Granted, @job.coresLeft Left
+ </td>
+ <td>@job.desc.memoryPerSlave</td>
+ <td>@job.submitDate</td>
+ <td>@job.desc.user</td>
+ <td>@job.state.toString()</td>
+</tr> \ No newline at end of file