The openstack_dashboard.dashboards.project.stacks.forms ModuleΒΆ

class openstack_dashboard.dashboards.project.stacks.forms.ChangeTemplateForm(*args, **kwargs)[source]

Bases: openstack_dashboard.dashboards.project.stacks.forms.TemplateForm

class ChangeTemplateForm.Meta[source]
ChangeTemplateForm.Meta.help_text = <django.utils.functional.__proxy__ object at 0x6e2cd90>
ChangeTemplateForm.Meta.name = <django.utils.functional.__proxy__ object at 0x6e2cd10>
ChangeTemplateForm.base_fields = {'template_source': <django.forms.fields.ChoiceField object at 0x6e2c0d0>, 'template_upload': <django.forms.fields.FileField object at 0x6e2c2d0>, 'template_url': <django.forms.fields.URLField object at 0x6e2c510>, 'template_data': <django.forms.fields.CharField object at 0x6e2c790>, 'environment_source': <django.forms.fields.ChoiceField object at 0x6e2c890>, 'environment_upload': <django.forms.fields.FileField object at 0x6e2ca50>, 'environment_data': <django.forms.fields.CharField object at 0x6e2cc90>, 'stack_id': <django.forms.fields.CharField object at 0x6e2ce50>, 'stack_name': <django.forms.fields.CharField object at 0x6e33050>}
ChangeTemplateForm.media
class openstack_dashboard.dashboards.project.stacks.forms.CreateStackForm(*args, **kwargs)[source]

Bases: horizon.forms.base.SelfHandlingForm

class CreateStackForm.Meta[source]
CreateStackForm.Meta.name = <django.utils.functional.__proxy__ object at 0x6e330d0>
CreateStackForm.base_fields = {'template_data': <django.forms.fields.CharField object at 0x6e33110>, 'template_url': <django.forms.fields.CharField object at 0x6e33250>, 'environment_data': <django.forms.fields.CharField object at 0x6e332d0>, 'parameters': <django.forms.fields.CharField object at 0x6e33350>, 'stack_name': <django.forms.fields.RegexField object at 0x6e33490>, 'timeout_mins': <django.forms.fields.IntegerField object at 0x6e336d0>, 'enable_rollback': <django.forms.fields.BooleanField object at 0x6e33850>}
CreateStackForm.handle(*func_args, **func_kwargs)[source]
CreateStackForm.media
CreateStackForm.param_prefix = '__param_'
class openstack_dashboard.dashboards.project.stacks.forms.EditStackForm(*args, **kwargs)[source]

Bases: openstack_dashboard.dashboards.project.stacks.forms.CreateStackForm

class EditStackForm.Meta[source]
EditStackForm.Meta.name = <django.utils.functional.__proxy__ object at 0x6e33950>
EditStackForm.base_fields = {'template_data': <django.forms.fields.CharField object at 0x6e33110>, 'template_url': <django.forms.fields.CharField object at 0x6e33250>, 'environment_data': <django.forms.fields.CharField object at 0x6e332d0>, 'parameters': <django.forms.fields.CharField object at 0x6e33350>, 'stack_name': <django.forms.fields.CharField object at 0x6e33c10>, 'timeout_mins': <django.forms.fields.IntegerField object at 0x6e336d0>, 'enable_rollback': <django.forms.fields.BooleanField object at 0x6e33850>, 'stack_id': <django.forms.fields.CharField object at 0x6e33a50>}
EditStackForm.handle(*func_args, **func_kwargs)[source]
EditStackForm.media
class openstack_dashboard.dashboards.project.stacks.forms.TemplateForm(*args, **kwargs)[source]

Bases: horizon.forms.base.SelfHandlingForm

class TemplateForm.Meta[source]
TemplateForm.Meta.help_text = <django.utils.functional.__proxy__ object at 0x727bd90>
TemplateForm.Meta.name = <django.utils.functional.__proxy__ object at 0x727bd50>
TemplateForm.attributes = {'data-envsource-raw': <django.utils.functional.__proxy__ object at 0x6e2cb10>, 'data-switch-on': 'envsource', 'class': 'switched'}
TemplateForm.base_choices = [('file', <django.utils.functional.__proxy__ object at 0x727be10>), ('raw', <django.utils.functional.__proxy__ object at 0x727be90>)]
TemplateForm.base_fields = {'template_source': <django.forms.fields.ChoiceField object at 0x6e2c0d0>, 'template_upload': <django.forms.fields.FileField object at 0x6e2c2d0>, 'template_url': <django.forms.fields.URLField object at 0x6e2c510>, 'template_data': <django.forms.fields.CharField object at 0x6e2c790>, 'environment_source': <django.forms.fields.ChoiceField object at 0x6e2c890>, 'environment_upload': <django.forms.fields.FileField object at 0x6e2ca50>, 'environment_data': <django.forms.fields.CharField object at 0x6e2cc90>}
TemplateForm.clean()[source]
TemplateForm.clean_uploaded_files(prefix, field_label, cleaned, files)[source]

Cleans Template & Environment data from form upload.

Does some of the crunchy bits for processing uploads vs raw data depending on what the user specified. Identical process for environment data & template data.

Parameters:
  • prefix (str) – prefix (environment, template) of field
  • field_label (str) – translated prefix str for messages
  • prefix – existing cleaned fields from form
Return type:

dict

Returns:

cleaned dict including environment & template data

TemplateForm.create_kwargs(data)[source]
TemplateForm.handle(request, data)[source]
TemplateForm.media
TemplateForm.url_choice = [('url', <django.utils.functional.__proxy__ object at 0x727bf10>)]
openstack_dashboard.dashboards.project.stacks.forms.create_upload_form_attributes(prefix, input_type, name)[source]

Creates attribute dicts for the switchable upload form

Parameters:
  • prefix (str) – prefix (environment, template) of field
  • input_type (str) – field type (file, raw, url)
  • name (str) – translated text label to display to user
Return type:

dict

Returns:

an attribute set to pass to form build

Previous topic

The openstack_dashboard.dashboards.project.stacks.views Module

Next topic

The openstack_dashboard.dashboards.project.stacks.sro Module

This Page