Paul Craciunoiu

Results 14 issues of Paul Craciunoiu

Hey Nick, Paul at Humble Bundle here. We're using this library and I added support for `djangoforms` for it in order to make it play nicely with our up-and-coming django-like...

**Describe the bug** It looks like the `customer.orders` array is queried by billing email. So, if a user changes their email address, their past orders are no longer available. That...

design notes
needs more discussion

Noticed that Jamaal Bowman doesn't have a picture. I didn't check for others yet.

I was trying to dig through this to figure it out, and I apologize if there's a good reason for this. It seems to me that a paginated connection (e.g....

Example: ```python # models from django.db import models class Article(models.Model): title = models.CharField(max_length=1000) class Comment(models.Model): article = models.ForeignKey(Article, on_delete=models.CASCADE) text = models.TextField() # conftest.py class CommentFactory(factory.django.DjangoModelFactory): class Meta: model =...

Resolves: #6853 Follow-up from #6915. With this PR, you can search users by custom fields using `search_fields`. * Add the `search_fields` to the custom user for use in the tests....

status:Needs Review
component:Search
component:User Management

Discovered this while testing the setting for `_clone_linked_m2m_fields`. In my case, without the `duplicate.save()`, the values were not persisted to the database. This was using Wagtail's `ClusterableModel`, so it's possible...

I can't speak for all these changes, but I'd love it if the parent of all our forks was the most up to date version.

One of my company's clients wanted the option to autocomplete draft wagtail content too. This adds a way to do that by not using the `.live()` queryset when a custom...