-
I mean something like Celery's `AsyncResult(task_id).state`.
-
I had this error while creating a service to a django project :
AttributeError: 'Options' object has no attribute `get_all_field_names`
this is the code:
```from django.contrib.auth import get…
-
# 메인 페이지 구성하기
1. **frontend 앱 구성하기:**
```bash
python manage.py startapp frontend
```
2. **frontend 앱의 urls.py 작성:**
```python
# frontend/urls.py
from django.urls import path
fro…
-
I am writing a django/python application and trying to include simple-history as a way to track changes to model instances. HistoricalRecord are not being created on creation/updates within that code…
-
to reproduce I start with no db in my django app.
I have wellknown as an app directory.
I add wellkown to my settings.py installed_apps
I add wellkown urls.py to my main urls.py
I run python manage.py…
-
The example from the docs should allow you to reproduce it. The error is raised when running `Run `python manage.py runserver``
```
from graphene_django.forms.mutation import DjangoModelFormMutati…
-
Hi,
I have an issue in django-polymorphic when deleting models from django-admin.
Models are defined as below
``` python
class Farm(models.Model):
class Meta:
pass
class Animal(Polymor…
-
```python
class BazFactory(factory.django.DjangoModelFactory):
class Meta:
model = Baz
name = factory.Faker("word")
class FooFactory(factory.django.DjangoModelFactory):
…
-
Здравствуйте.
Попытался использовать в связке с вышеозначенной версией django. Использовал ORMMetaBackend, основываясь на примере Authorization
```
# storages.py
from django.core.files.storage i…
-
When using DjangoObjectType from `graphene_django` it is possible to reduce the fields by setting the `fields` in the Meta class.
For example:
```python
from graphene_django import DjangoObjectTy…