aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/twirl/masterui/job_table.scala.html
blob: 52bad6c4b82bdc4849b13e5c835c8f415d87b1c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@(jobs: List[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 Slave</th>
      <th>Submit Date</th>
      <th>User</th>
      <th>State</th>
    </tr>
  </thead>
  <tbody>
    @for(j <- jobs) {
      @job_row(j)
    }
  </tbody>
</table>