aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/twirl/spark/deploy/master/app_table.scala.html
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/twirl/spark/deploy/master/app_table.scala.html')
-rw-r--r--core/src/main/twirl/spark/deploy/master/app_table.scala.html21
1 files changed, 0 insertions, 21 deletions
diff --git a/core/src/main/twirl/spark/deploy/master/app_table.scala.html b/core/src/main/twirl/spark/deploy/master/app_table.scala.html
deleted file mode 100644
index f789cee0f1..0000000000
--- a/core/src/main/twirl/spark/deploy/master/app_table.scala.html
+++ /dev/null
@@ -1,21 +0,0 @@
-@(apps: Array[spark.deploy.master.ApplicationInfo])
-
-<table class="table table-bordered table-striped table-condensed sortable">
- <thead>
- <tr>
- <th>ID</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 <- apps) {
- @app_row(j)
- }
- </tbody>
-</table>