Drew
Drew
**Environment:** - Windows 10 (WSL 2 Debian) - Python 3.8 - pipenv - Django 3.1 - django-currentuser 0.5.1 **Problem:** When I run `python manage.py makemigrations` I get the following warning....
For the styled nav example, the classes for modifying the `navtext` were incorrect. They had no effect in modifying the color of the font-weight. They will now correctly change the...
```python class BazFactory(factory.django.DjangoModelFactory): class Meta: model = Baz name = factory.Faker("word") class FooFactory(factory.django.DjangoModelFactory): class Meta: model = Foo @factory.post_generation def bazs(self, create, extracted, **kwargs): if not create: return if extracted:...