Jack Linke

Results 21 issues of Jack Linke

Adds `verbose_name` for rules and permissions, resolving #59. This change should be transparent to any existing users of django-rules, but adds the new capability to add and display verbose names...

With django now supporting async, should we be trying to import [asgiref.local.Local](https://github.com/django/asgiref/blob/main/asgiref/local.py) if available, which is a drop-in async replacement for threading.local? Perhaps replacing: `from threading import local` With: ```...

When initializing the form, look at whether the related model field is a UUIDField, CharField, or other, and utilize forms.UUIDField, forms.CharField, or forms.IntegerField, respectively. Should resolve #67 and replace PR...

- Fixes #135 - Moves version number into toml file - Bumps version to 0.7.1 - Not including poetry.lock per Poetry recommendations that it is not needed for libraries (https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control)...

**What did you run into?** Trying to read the documentation to better understand this project, but much of the information is missing from pages or incorrectly formatted/garbled. **Why would it...

documentation
good first issue

Update `delete_expired` method of ResultManager to use writable database. Resolves #357

In a django project with a database router and read-only databases, the [`delete_expired`](https://github.com/celery/django-celery-results/blob/main/django_celery_results/managers.py#L87) method may try to perform `raw_delete()` using a read-only database, resulting in an Internal Error: "ReadOnlySqlTransaction -...

This issue is somewhat selfish in nature. I prefer to use Function-Based Views, and would like to use WeasyTemplateResponse in these views with minimal boilerplate. Specifying `content_type` in the returned...

enhancement
help wanted

**Is your feature request related to a problem? Please describe.** It can be helpful when learning something new in programming - in addition to having documentation - to have a...

**Describe the bug** If the Group model is swapped, and then the `makemigrations` command is run, django attempts to create a 7th migration within `django-automations` **Expected behavior** Running `makemigrations` within...