diff --git a/meteos_ui/static/dashboard/machine_learning/datasets/datasets.module.js b/meteos_ui/static/dashboard/machine_learning/datasets/datasets.module.js index d653559..c32168d 100644 --- a/meteos_ui/static/dashboard/machine_learning/datasets/datasets.module.js +++ b/meteos_ui/static/dashboard/machine_learning/datasets/datasets.module.js @@ -61,6 +61,9 @@ .setProperty('name', { label: gettext('Name') }) + .setProperty('description', { + label: gettext('Description') + }) .setProperty('id', { label: gettext('ID') }) @@ -79,6 +82,10 @@ filters: ['noName'], urlFunction: urlFunction }) + .append({ + id: 'description', + priority: 2 + }) .append({ id: 'id', priority: 3 @@ -98,6 +105,11 @@ 'name': 'name', 'singleton': true }) + .append({ + 'label': gettext('Description'), + 'name': 'description', + 'singleton': true + }) .append({ 'label': gettext('ID'), 'name': 'id', diff --git a/meteos_ui/static/dashboard/machine_learning/datasets/details/drawer.html b/meteos_ui/static/dashboard/machine_learning/datasets/details/drawer.html index beddc61..9a31b34 100644 --- a/meteos_ui/static/dashboard/machine_learning/datasets/details/drawer.html +++ b/meteos_ui/static/dashboard/machine_learning/datasets/details/drawer.html @@ -2,12 +2,12 @@
-
ID
-
{$ item.id $}
+
Head
+
{$ item.head $}
-
Description
-
{$ item.description $}
+
ID
+
{$ item.id $}
diff --git a/meteos_ui/static/dashboard/machine_learning/experiments/details/drawer.html b/meteos_ui/static/dashboard/machine_learning/experiments/details/drawer.html index ed623c6..df92702 100644 --- a/meteos_ui/static/dashboard/machine_learning/experiments/details/drawer.html +++ b/meteos_ui/static/dashboard/machine_learning/experiments/details/drawer.html @@ -5,10 +5,6 @@
ID
{$ item.id $}
-
-
Description
-
{$ item.description $}
-
diff --git a/meteos_ui/static/dashboard/machine_learning/experiments/experiments.module.js b/meteos_ui/static/dashboard/machine_learning/experiments/experiments.module.js index 2c96614..31116e4 100644 --- a/meteos_ui/static/dashboard/machine_learning/experiments/experiments.module.js +++ b/meteos_ui/static/dashboard/machine_learning/experiments/experiments.module.js @@ -61,6 +61,9 @@ .setProperty('name', { label: gettext('Name') }) + .setProperty('description', { + label: gettext('Description') + }) .setProperty('id', { label: gettext('ID') }) @@ -82,6 +85,10 @@ filters: ['noName'], urlFunction: urlFunction }) + .append({ + id: 'description', + priority: 2 + }) .append({ id: 'id', priority: 3 @@ -105,6 +112,11 @@ 'name': 'name', 'singleton': true }) + .append({ + 'label': gettext('Description'), + 'name': 'description', + 'singleton': true + }) .append({ 'label': gettext('ID'), 'name': 'id', diff --git a/meteos_ui/static/dashboard/machine_learning/learnings/details/drawer.html b/meteos_ui/static/dashboard/machine_learning/learnings/details/drawer.html index 85f0fc5..61ea4fd 100644 --- a/meteos_ui/static/dashboard/machine_learning/learnings/details/drawer.html +++ b/meteos_ui/static/dashboard/machine_learning/learnings/details/drawer.html @@ -5,10 +5,6 @@
ID
{$ item.id $}
-
-
Description
-
{$ item.description $}
-
diff --git a/meteos_ui/static/dashboard/machine_learning/learnings/learnings.module.js b/meteos_ui/static/dashboard/machine_learning/learnings/learnings.module.js index ea1aef1..c38e416 100644 --- a/meteos_ui/static/dashboard/machine_learning/learnings/learnings.module.js +++ b/meteos_ui/static/dashboard/machine_learning/learnings/learnings.module.js @@ -61,6 +61,9 @@ .setProperty('name', { label: gettext('Name') }) + .setProperty('description', { + label: gettext('Description') + }) .setProperty('id', { label: gettext('ID') }) @@ -85,6 +88,10 @@ filters: ['noName'], urlFunction: urlFunction }) + .append({ + id: 'description', + priority: 2 + }) .append({ id: 'id', priority: 3 @@ -112,6 +119,11 @@ 'name': 'name', 'singleton': true }) + .append({ + 'label': gettext('Description'), + 'name': 'description', + 'singleton': true + }) .append({ 'label': gettext('ID'), 'name': 'id', diff --git a/meteos_ui/static/dashboard/machine_learning/model_evaluations/details/drawer.html b/meteos_ui/static/dashboard/machine_learning/model_evaluations/details/drawer.html index 9ad941c..db600c2 100644 --- a/meteos_ui/static/dashboard/machine_learning/model_evaluations/details/drawer.html +++ b/meteos_ui/static/dashboard/machine_learning/model_evaluations/details/drawer.html @@ -5,10 +5,6 @@
ID
{$ item.id $}
-
-
Description
-
{$ item.description $}
-
diff --git a/meteos_ui/static/dashboard/machine_learning/model_evaluations/model_evaluations.module.js b/meteos_ui/static/dashboard/machine_learning/model_evaluations/model_evaluations.module.js index 96f7006..c21c7a2 100644 --- a/meteos_ui/static/dashboard/machine_learning/model_evaluations/model_evaluations.module.js +++ b/meteos_ui/static/dashboard/machine_learning/model_evaluations/model_evaluations.module.js @@ -67,6 +67,9 @@ .setProperty('status', { label: gettext('Status') }) + .setProperty('model_id', { + label: gettext('Model ID') + }) .setProperty('model_type', { label: gettext('Model Type') }) @@ -93,6 +96,10 @@ id: 'status', priority: 2 }) + .append({ + id: 'model_id', + priority: 2 + }) .append({ id: 'model_type', priority: 2 diff --git a/meteos_ui/static/dashboard/machine_learning/models/details/drawer.html b/meteos_ui/static/dashboard/machine_learning/models/details/drawer.html index b611105..4b942b9 100644 --- a/meteos_ui/static/dashboard/machine_learning/models/details/drawer.html +++ b/meteos_ui/static/dashboard/machine_learning/models/details/drawer.html @@ -1,13 +1,17 @@
+
+
Result
+
{$ item.stdout $}
+
ID
{$ item.id $}
-
Description
-
{$ item.description $}
+
Model Params
+
{$ item.params $}
diff --git a/meteos_ui/static/dashboard/machine_learning/models/models.module.js b/meteos_ui/static/dashboard/machine_learning/models/models.module.js index ba07749..f8a317b 100644 --- a/meteos_ui/static/dashboard/machine_learning/models/models.module.js +++ b/meteos_ui/static/dashboard/machine_learning/models/models.module.js @@ -61,17 +61,23 @@ .setProperty('name', { label: gettext('Name') }) + .setProperty('description', { + label: gettext('Description') + }) .setProperty('id', { label: gettext('ID') }) .setProperty('status', { label: gettext('Status') }) - .setProperty('key_name', { - label: gettext('Key Name') + .setProperty('type', { + label: gettext('Model Type') }) - .setProperty('management_network', { - label: gettext('Management Network') + .setProperty('params', { + label: gettext('Model Param') + }) + .setProperty('source_dataset_url', { + label: gettext('Source Dataset URL') }) .setListFunction(listFunction) .tableColumns @@ -82,6 +88,10 @@ filters: ['noName'], urlFunction: urlFunction }) + .append({ + id: 'description', + priority: 2 + }) .append({ id: 'id', priority: 3 @@ -91,11 +101,15 @@ priority: 2 }) .append({ - id: 'key_name', + id: 'type', priority: 2 }) .append({ - id: 'management_network', + id: 'params', + priority: 3 + }) + .append({ + id: 'source_dataset_url', priority: 2 }) // for magic-search @@ -105,6 +119,11 @@ 'name': 'name', 'singleton': true }) + .append({ + 'label': gettext('Description'), + 'name': 'description', + 'singleton': true + }) .append({ 'label': gettext('ID'), 'name': 'id', @@ -116,13 +135,13 @@ 'singleton': true }) .append({ - 'label': gettext('Key Name'), - 'name': 'key_name', + 'label': gettext('Model Type'), + 'name': 'type', 'singleton': true }) .append({ - 'label': gettext('Management Network'), - 'name': 'management_network', + 'label': gettext('Source Dataset URL'), + 'name': 'source_dataset_url', 'singleton': true }); diff --git a/meteos_ui/static/dashboard/machine_learning/templates/details/drawer.html b/meteos_ui/static/dashboard/machine_learning/templates/details/drawer.html index acffa8d..de907bc 100644 --- a/meteos_ui/static/dashboard/machine_learning/templates/details/drawer.html +++ b/meteos_ui/static/dashboard/machine_learning/templates/details/drawer.html @@ -5,10 +5,6 @@
ID
{$ item.id $}
-
-
Description
-
{$ item.description $}
-
Master Flavor
{$ item.master_flavor $}
diff --git a/meteos_ui/static/dashboard/machine_learning/templates/templates.module.js b/meteos_ui/static/dashboard/machine_learning/templates/templates.module.js index 221c6bb..1432866 100644 --- a/meteos_ui/static/dashboard/machine_learning/templates/templates.module.js +++ b/meteos_ui/static/dashboard/machine_learning/templates/templates.module.js @@ -61,6 +61,9 @@ .setProperty('name', { label: gettext('Name') }) + .setProperty('description', { + label: gettext('Description') + }) .setProperty('id', { label: gettext('ID') }) @@ -70,9 +73,15 @@ .setProperty('master_nodes', { label: gettext('Master Nodes') }) + .setProperty('master_flavor', { + label: gettext('Master Flavor') + }) .setProperty('worker_nodes', { label: gettext('Worker Nodes') }) + .setProperty('worker_flavor', { + label: gettext('Worker Flavor') + }) .setProperty('spark_version', { label: gettext('Spark Version') }) @@ -85,6 +94,10 @@ filters: ['noName'], urlFunction: urlFunction }) + .append({ + id: 'description', + priority: 2 + }) .append({ id: 'id', priority: 3 @@ -97,10 +110,18 @@ id: 'master_nodes', priority: 2 }) + .append({ + id: 'master_flavor', + priority: 3 + }) .append({ id: 'worker_nodes', priority: 2 }) + .append({ + id: 'worker_flavor', + priority: 3 + }) .append({ id: 'spark_version', priority: 2 @@ -112,6 +133,11 @@ 'name': 'name', 'singleton': true }) + .append({ + 'label': gettext('Description'), + 'name': 'description', + 'singleton': true + }) .append({ 'label': gettext('ID'), 'name': 'id',