Tim Schilling

Results 68 issues of Tim Schilling

We should start identifying what UI changes we need to support WCAG 2.1 AA. A tool that can help identify issues is: https://accessibilityinsights.io/ Thibaud has a good talk on accessibility...

@charettes raised a great idea where the toolbar could highlight where and how a developer could resolve an N+1 error. For example, if the admin is setup to generate an...

Accumulating all the changes from pending PRs to see if the build will pass entirely. This PR should be closed, not merged.

It may be a good idea to allow a person to search for developers based on location rather than by their name. This would allow companies/recruiters to find Django developers...

**Describe the bug** When using `print(MyModel.history.as_of(as_of).only('id').explain(analyze=True))`, it generates a Sequential Scan fromt his code here: https://github.com/jazzband/django-simple-history/blob/273a4ef3455c729451aa227145cd7aeec5641dd6/simple_history/manager.py#L76-L82 **To Reproduce** Steps to reproduce the behavior: 1. Run `print(MyModel.history.as_of(as_of).only('id').explain(analyze=True))` 2. Look for `Seq...

enhancement

**Problem Statement** `Model.objects.update_or_create` will always result in a `.save()` call which means there will always be a new historical record created regardless if there were any changes. **Describe the solution...

enhancement

Hi PyLadies! I'm reaching out to let you know that [DjangoCon US 2024](2024.djangocon.us/) will be held in Durham, NC from Sept 22-27. We have a [Call for Proposals open](https://2024.djangocon.us/speaking/) until...

:robot: feed/events

Currently the library raises an exception for authentication failures. I think it should be a specific exception class so it can be filtered out more easily. In my case, I'm...