django-angular
django-angular copied to clipboard
Let AngularJS play well with Django
Bumps [pillow](https://github.com/python-pillow/Pillow) from 7.1.0 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...
Unable to access certain admin sections with bound forms. Below error shows up when access User page from Django admin. Request Method: | GET -- | -- http://10.10.134.239:9005/admin/auth/user/ 3.1 AttributeError...
Version 2.3 officially dropped support for Python 2.7 (which reached its end of life at the end of 2020). In Python 3, all string literals are Unicode. Expressly stating file...
File "/home/www.django/incoan/env/lib/python3.5/site-packages/djng/forms/fields.py", line 13, in from django.core.urlresolvers import reverse_lazy ImportError: No module named 'django.core.urlresolvers' SOLUTION: Change "django.core.urlresolvers" to "django.urls"
Bumps [py](https://github.com/pytest-dev/py) from 1.8.0 to 1.10.0. Changelog Sourced from py's changelog. 1.10.0 (2020-12-12) Fix a regular expression DoS vulnerability in the py.path.svnwc SVN blame functionality (CVE-2020-29651) Update vendored apipkg: 1.4...
Bumps [angular](https://github.com/angular/angular.js) from 1.6.10 to 1.8.0. Changelog Sourced from angular's changelog. 1.8.0 nested-vaccination (2020-06-01) This release contains a breaking change to resolve a security issue which was discovered by Krzysztof...
Bumps [angular](https://github.com/angular/angular.js) from 1.7.9 to 1.8.0. Changelog Sourced from angular's changelog. 1.8.0 nested-vaccination (2020-06-01) This release contains a breaking change to resolve a security issue which was discovered by Krzysztof...
Django removed 'six' I'm not sure what to replace it with in the import. Error: ImportError raised when trying to load 'djng.templatetags.djng_tags': cannot import name 'six'
I have implemented django-angular client side form validation. Every constraint is validated as expected apart from my model RegexValidator (the error is later caught on the server's side so I...