Modified typo on Change Stack's pop-up Window.

In stack update's pop-up window, the description and form help text is
still using creation, not updating. That's not good.

Change-Id: I81c839f52918da276125f377ea829c3da8b3c4a8
Task: #18912
Story: #1767266
This commit is contained in:
JiyeYu 2018-05-09 14:36:58 +09:00
parent 13dd13e561
commit 2fe9ca1965
2 changed files with 5 additions and 1 deletions

View File

@ -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):

View File

@ -4,5 +4,5 @@
{% block modal-body-right %}
<h3>{% trans "Description:" %}</h3>
<p>{% trans "A template is used to automate the deployment of infrastructure, services, and applications." %}</p>
<p>{% trans "Use one of the available template source options to specify the template to be used in creating this stack." %}</p>
<p>{% trans "Use one of the available template source options to specify the template to be used in changing this stack." %}</p>
{% endblock %}