diff --git a/app/index.html b/app/index.html
index e814ff33..a29a9ceb 100644
--- a/app/index.html
+++ b/app/index.html
@@ -920,7 +920,22 @@
diff --git a/app/scripts/proactive/model/Job.js b/app/scripts/proactive/model/Job.js
index 541858ab..4550fae2 100644
--- a/app/scripts/proactive/model/Job.js
+++ b/app/scripts/proactive/model/Job.js
@@ -89,7 +89,8 @@ define(
fieldAttrs: {
"data-tab": "Workflow Variables",
'placeholder': 'variables->variable',
- "data-tab-help": "Workflow variables that will be available in all tasks."
+ "data-tab-help": "Workflow variables that will be available in all tasks.",
+ "sub-data-tab": "See Variables Structured by Categories"
},
confirmDelete: 'You are about to remove a variable.',
itemToString: Utils.inlineNameValue,
diff --git a/app/scripts/proactive/templates/job-variable-template.html b/app/scripts/proactive/templates/job-variable-template.html
index 8199a324..70b911c6 100644
--- a/app/scripts/proactive/templates/job-variable-template.html
+++ b/app/scripts/proactive/templates/job-variable-template.html
@@ -1,5 +1,5 @@
-
+
<% _.each(jobGenericInfos, function(gi) {
var label = gi["Property Name"];
if (label == "workflow.icon" ) %>
@@ -7,28 +7,31 @@
<% }) %>
<%- jobName %>
-
+
- Description : <%- jobDescription %>
- Project name : <%- jobProjectName %>
+ <% if (isSubmissionMode) { %>
+ Description :
<%- jobDescription %>
+ Project name :<%- jobProjectName %>
<% if (jobTags && jobTags.length>0) { %>
- Tags : <%=jobTags.join()%>
- <% } %>
+ Tags :<%=jobTags.join()%>
+ <% } %>
<% _.each(jobGenericInfos, function(gi) {
var label = gi["Property Name"];
if (label == "bucketName" ) %>
- Bucket name : <%=gi["Property Value"] %>
+ Bucket name :<%=gi["Property Value"] %>
<% }) %>
<% _.each(jobGenericInfos, function(gi) {
var label = gi["Property Name"];
if (label == "Documentation" ) %>
- Documentation : <%=gi["Property Value"]%>
+
<% }) %>
+ <% } %>