Bharat Chauhan
Bharat Chauhan
Please update the dependencies, for it's still using versions from over 2 years ago. Thank you.
[OWASP recommends](https://cheatsheetseries.owasp.org/cheatsheets/Cross-Site_Request_Forgery_Prevention_Cheat_Sheet.html#login-csrf) to generate a new CSRF token after authentication: > Remember that pre-sessions cannot be transitioned to real sessions once the user is authenticated - the session should be...
Currently, when the popup overflows from the window, one needs to scroll to right to bring it into view. This commit flips is to left in those cases. Also, seems...
Make sure that the value of readonly inputs hasn't changed when data is submitted. This requires comparison from the initial form data. Seems a bit tricky to implement.
Supporting coroutine callbacks in `autoreload.add_reload_hook` would be really helpful for closing database connections when the app auto reloads during development. I'm currently using `aiopg` and the [function to close the...
`pip install japronto` is not working because it can't find the package. Reason is because it's missing from the package list page (https://pypi.python.org/simple/) Surprisingly, if you go to https://pypi.python.org/simple/japronto/ the...
Add support for a rich text input. Doesn't have to be a full-fledged editor. A few basic text formatting options should be enough. Example: ```python { "type": "string", "widget": "richtextarea"...
Two ways to do this: - Either checkbox on the form to toggle this behaviour - Or an argument on the `JSONField` to configure this: `empty_string_as_null=True`.
This would allow for sending unique identifiers to the handler so that the handler can be used for multiple fields. Two ways to do this: - By introducing a new...