Repository: airavata-php-gateway Updated Branches: refs/heads/develop e113a9014 -> b856e8c11
WIP Project: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/commit/b856e8c1 Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/b856e8c1 Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/b856e8c1 Branch: refs/heads/develop Commit: b856e8c11af44be329ee0e614d2422bf56fa943a Parents: e113a90 Author: scnakandala <[email protected]> Authored: Mon May 22 15:24:42 2017 -0400 Committer: scnakandala <[email protected]> Committed: Mon May 22 15:24:42 2017 -0400 ---------------------------------------------------------------------- app/views/partials/experiment-queue-block.blade.php | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/b856e8c1/app/views/partials/experiment-queue-block.blade.php ---------------------------------------------------------------------- diff --git a/app/views/partials/experiment-queue-block.blade.php b/app/views/partials/experiment-queue-block.blade.php index d5bc931..1bdd290 100644 --- a/app/views/partials/experiment-queue-block.blade.php +++ b/app/views/partials/experiment-queue-block.blade.php @@ -174,6 +174,7 @@ else $(".node-count").parent().addClass("hide"); + $("#node-count").html(queues[i]['defaultNodeCount']); //core-count if (queues[i]['maxProcessors'] != 0 && queues[i]['maxProcessors'] != null) { @@ -188,6 +189,8 @@ else $(".cpu-count").parent().addClass("hide"); + $("#cpu-count").html(queues[i]['defaultCPUCount']); + //walltime-count if (queues[i]['maxRunTime'] != null && queues[i]['maxRunTime'] != 0) { if($('#enable-auto-scheduling').prop('checked')){ @@ -201,6 +204,8 @@ else $(".walltime-count").parent().addClass("hide"); + $("#walltime-count").html(queues[i]['defaultWalltime']); + //memory-count if (queues[i]['maxMemory'] != 0 && queues[i]['maxMemory'] != null) { if($('#enable-auto-scheduling').prop('checked')){
