From 04e51caf7ea32c297aa52a97984b51aed71daa04 Mon Sep 17 00:00:00 2001 From: Ralf Teusner Date: Tue, 17 Nov 2015 16:18:29 +0100 Subject: [PATCH] Show Poolsize on ExecutionEnvironments Index Page --- app/views/execution_environments/index.html.slim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/views/execution_environments/index.html.slim b/app/views/execution_environments/index.html.slim index 7ed2cebb..3043be9d 100644 --- a/app/views/execution_environments/index.html.slim +++ b/app/views/execution_environments/index.html.slim @@ -6,6 +6,7 @@ h1 = ExecutionEnvironment.model_name.human(count: 2) tr th = t('activerecord.attributes.execution_environment.name') th = t('activerecord.attributes.execution_environment.user') + th = t('activerecord.attributes.execution_environment.pool_size') th = t('activerecord.attributes.execution_environment.memory_limit') th = t('activerecord.attributes.execution_environment.network_enabled') th = t('activerecord.attributes.execution_environment.permitted_execution_time') @@ -16,6 +17,7 @@ h1 = ExecutionEnvironment.model_name.human(count: 2) tr td = execution_environment.name td = link_to(execution_environment.author, execution_environment.author) + td = execution_environment.pool_size td = execution_environment.memory_limit td = symbol_for(execution_environment.network_enabled) td = execution_environment.permitted_execution_time