django-multi-form-view icon indicating copy to clipboard operation
django-multi-form-view copied to clipboard

Django class based views for using more than one form in a single view

Results 14 django-multi-form-view issues
Sort by recently updated
recently updated
newest added
trafficstars

Bumps [codecov](https://github.com/codecov/codecov-python) from 2.0.5 to 2.0.16. Changelog Sourced from codecov's changelog. 2.0.16 fixed reported command injection vulnerability. 2.0.15 add -X s3 to disable direct to S3 uploading 2.0.14 fixed coverage...

dependencies

Bumps [pillow](https://github.com/python-pillow/Pillow) from 5.4.1 to 9.0.1. Release notes Sourced from pillow's releases. 9.0.1 https://pillow.readthedocs.io/en/stable/releasenotes/9.0.1.html Changes In show_file, use os.remove to remove temporary images. CVE-2022-24303 #6010 [@​radarhere, @​hugovk] Restrict builtins within...

dependencies

Bumps [babel](https://github.com/python-babel/babel) from 2.3.4 to 2.9.1. Release notes Sourced from babel's releases. Version 2.9.1 Bugfixes The internal locale-data loading functions now validate the name of the locale file to be...

dependencies

Bumps [django](https://github.com/django/django) from 1.11.18 to 2.2.24. Commits 2da029d [2.2.x] Bumped version for 2.2.24 release. f27c38a [2.2.x] Fixed CVE-2021-33571 -- Prevented leading zeros in IPv4 addresses. 053cc95 [2.2.x] Fixed CVE-2021-33203 --...

dependencies

Bumps [pygments](https://github.com/pygments/pygments) from 2.1.3 to 2.7.4. Release notes Sourced from pygments's releases. 2.7.4 Updated lexers: Apache configurations: Improve handling of malformed tags (#1656) CSS: Add support for variables (#1633, #1666)...

dependencies

Bumps [pyyaml](https://github.com/yaml/pyyaml) from 4.2b1 to 5.4. Changelog Sourced from pyyaml's changelog. 5.4 (2021-01-19) yaml/pyyaml#407 -- Build modernization, remove distutils, fix metadata, build wheels, CI to GHA yaml/pyyaml#472 -- Fix for...

dependencies

Bumps [jinja2](https://github.com/pallets/jinja) from 2.8 to 2.11.3. Release notes Sourced from jinja2's releases. 2.11.3 This contains a fix for a speed issue with the urlize filter. urlize is likely to be...

dependencies

How can i filter form based on the current login user? ex doen't work def __init__(self, **kwargs): super().__init__(**kwargs) self.form.fields["field"].queryset = model.objects.filter(owner=self.request.user)

Original implementation did not call super().get_context_data so extra context data from superclasses and other mix-ins was lost. This appeared to be in order to avoid the issue of the regular...