aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/twirl/masterui/worker_table.scala.html
blob: 2028842297f71c0b5294f5b19cf4e642c75d2dc2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@(workers: List[spark.deploy.master.WorkerInfo])

<table class="table table-bordered table-striped table-condensed sortable">
  <thead>
    <tr>
      <th>ID</th>
      <th>Address</th>
      <th>Cores</th>
      <th>Memory</th>
    </tr>
  </thead>
  <tbody>
    @for(w <- workers) {
      @worker_row(w)
    }
  </tbody>
</table>