aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/twirl/spark/deploy/master/job_table.scala.html
blob: d267d6e85e0b7acb73a120c81fe71692e59d7dce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@(jobs: Array[spark.deploy.master.JobInfo])

<table class="table table-bordered table-striped table-condensed sortable">
  <thead>
    <tr>
      <th>JobID</th>
      <th>Description</th>
      <th>Cores</th>
      <th>Memory per Node</th>
      <th>Submit Time</th>
      <th>User</th>
      <th>State</th>
      <th>Duration</th>
    </tr>
  </thead>
  <tbody>
    @for(j <- jobs) {
      @job_row(j)
    }
  </tbody>
</table>