fix indenting

fix_request_path_info
Diederik van der Boor 2017-10-08 21:53:02 +02:00
parent 3fe17d7a23
commit 4d5fb4be3b
1 changed files with 13 additions and 13 deletions

View File

@ -11,7 +11,7 @@ from .utils import add_media
class PolymorphicFormSetChild(object): class PolymorphicFormSetChild(object):
""" """
Metadata to define the inline of a polymorphic child. Metadata to define the inline of a polymorphic child.
Provide this information in the :func:`polymorphic_inlineformset_factory` construction. Provide this information in the :func:'polymorphic_inlineformset_factory' construction.
""" """
def __init__(self, model, form=ModelForm, fields=None, exclude=None, def __init__(self, model, form=ModelForm, fields=None, exclude=None,
@ -37,7 +37,7 @@ class PolymorphicFormSetChild(object):
def content_type(self): def content_type(self):
""" """
Expose the ContentType that the child relates to. Expose the ContentType that the child relates to.
This can be used for the ``polymorphic_ctype`` field. This can be used for the ''polymorphic_ctype'' field.
""" """
return ContentType.objects.get_for_model(self.model) return ContentType.objects.get_for_model(self.model)
@ -48,8 +48,8 @@ class PolymorphicFormSetChild(object):
# Do what modelformset_factory() / inlineformset_factory() does to the 'form' argument; # Do what modelformset_factory() / inlineformset_factory() does to the 'form' argument;
# Construct the form with the given ModelFormOptions values # Construct the form with the given ModelFormOptions values
# Fields can be overwritten. To support the global `polymorphic_child_forms_factory` kwargs, # Fields can be overwritten. To support the global 'polymorphic_child_forms_factory' kwargs,
# that doesn't completely replace all `exclude` settings defined per child type, # that doesn't completely replace all 'exclude' settings defined per child type,
# we allow to define things like 'extra_...' fields that are amended to the current child settings. # we allow to define things like 'extra_...' fields that are amended to the current child settings.
exclude = list(self.exclude) exclude = list(self.exclude)
@ -78,7 +78,7 @@ def polymorphic_child_forms_factory(formset_children, **kwargs):
""" """
Construct the forms for the formset children. Construct the forms for the formset children.
This is mostly used internally, and rarely needs to be used by external projects. This is mostly used internally, and rarely needs to be used by external projects.
When using the factory methods (:func:`polymorphic_inlineformset_factory`), When using the factory methods (:func:'polymorphic_inlineformset_factory'),
this feature is called already for you. this feature is called already for you.
""" """
child_forms = OrderedDict() child_forms = OrderedDict()
@ -97,8 +97,8 @@ class BasePolymorphicModelFormSet(BaseModelFormSet):
as all variations need ot be exposed somewhere. as all variations need ot be exposed somewhere.
When switching existing formsets to the polymorphic formset, When switching existing formsets to the polymorphic formset,
note that the ID field will no longer be named ``model_ptr``, note that the ID field will no longer be named ''model_ptr'',
but just appear as ``id``. but just appear as ''id''.
""" """
# Assigned by the factory # Assigned by the factory
@ -257,10 +257,10 @@ def polymorphic_modelformset_factory(model, formset_children,
""" """
Construct the class for an polymorphic model formset. Construct the class for an polymorphic model formset.
All arguments are identical to :func:`~django.forms.models.modelformset_factory`, All arguments are identical to :func:'~django.forms.models.modelformset_factory',
with the exception of the ``formset_children`` argument. with the exception of the ''formset_children'' argument.
:param formset_children: A list of all child :class:`PolymorphicFormSetChild` objects :param formset_children: A list of all child :class:'PolymorphicFormSetChild' objects
that tell the inline how to render the child model types. that tell the inline how to render the child model types.
:type formset_children: Iterable[PolymorphicFormSetChild] :type formset_children: Iterable[PolymorphicFormSetChild]
:rtype: type :rtype: type
@ -321,10 +321,10 @@ def polymorphic_inlineformset_factory(parent_model, model, formset_children,
""" """
Construct the class for an inline polymorphic formset. Construct the class for an inline polymorphic formset.
All arguments are identical to :func:`~django.forms.models.inlineformset_factory`, All arguments are identical to :func:'~django.forms.models.inlineformset_factory',
with the exception of the ``formset_children`` argument. with the exception of the ''formset_children'' argument.
:param formset_children: A list of all child :class:`PolymorphicFormSetChild` objects :param formset_children: A list of all child :class:'PolymorphicFormSetChild' objects
that tell the inline how to render the child model types. that tell the inline how to render the child model types.
:type formset_children: Iterable[PolymorphicFormSetChild] :type formset_children: Iterable[PolymorphicFormSetChild]
:rtype: type :rtype: type