diff --git a/heat_dashboard/content/stacks/forms.py b/heat_dashboard/content/stacks/forms.py index 0f86b491..869e2aa2 100644 --- a/heat_dashboard/content/stacks/forms.py +++ b/heat_dashboard/content/stacks/forms.py @@ -434,6 +434,10 @@ class EditStackForm(CreateStackForm): stack_name = forms.CharField( label=_('Stack Name'), widget=forms.TextInput(attrs={'readonly': 'readonly'})) + timeout_mins = forms.IntegerField( + initial=60, + label=_('Updating Timeout (minutes)'), + help_text=_('Stack updating timeout in minutes.')) @sensitive_variables('password') def handle(self, request, data): diff --git a/heat_dashboard/content/stacks/templates/stacks/_change_template.html b/heat_dashboard/content/stacks/templates/stacks/_change_template.html index 72b61b91..44e7069f 100644 --- a/heat_dashboard/content/stacks/templates/stacks/_change_template.html +++ b/heat_dashboard/content/stacks/templates/stacks/_change_template.html @@ -4,5 +4,5 @@ {% block modal-body-right %}

{% trans "Description:" %}

{% trans "A template is used to automate the deployment of infrastructure, services, and applications." %}

-

{% trans "Use one of the available template source options to specify the template to be used in creating this stack." %}

+

{% trans "Use one of the available template source options to specify the template to be used in changing this stack." %}

{% endblock %}