mirror of
https://github.com/ansible/awx.git
synced 2026-03-09 05:29:26 -02:30
add help_text to do_not_run workflow field
This commit is contained in:
@@ -15,6 +15,6 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='workflowjobnode',
|
model_name='workflowjobnode',
|
||||||
name='do_not_run',
|
name='do_not_run',
|
||||||
field=models.BooleanField(default=False),
|
field=models.BooleanField(default=False, help_text='Indidcates that a job will not be created when True. Workflow runtime semantics will mark this True if the node is in a path that will decidedly not be ran. A value of False means the node may not run.'),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -185,7 +185,10 @@ class WorkflowJobNode(WorkflowNodeBase):
|
|||||||
editable=False,
|
editable=False,
|
||||||
)
|
)
|
||||||
do_not_run = models.BooleanField(
|
do_not_run = models.BooleanField(
|
||||||
default=False
|
default=False,
|
||||||
|
help_text=_("Indidcates that a job will not be created when True. Workflow runtime "
|
||||||
|
"semantics will mark this True if the node is in a path that will "
|
||||||
|
"decidedly not be ran. A value of False means the node may not run."),
|
||||||
)
|
)
|
||||||
|
|
||||||
def get_absolute_url(self, request=None):
|
def get_absolute_url(self, request=None):
|
||||||
|
|||||||
Reference in New Issue
Block a user