We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when I try to pass test, i get error, that "Charfield" don't have attribute "use_required_attribute" to fix this I change few codelines
1.
Bona-Blog/blog/models/article_models.py
Line 10 in aa68f68
from ckeditor.fields import RichTextField
Line 39 in aa68f68
body = RichTextField(blank=True)
after this all test passed success
The text was updated successfully, but these errors were encountered:
Great, thank you I will fix it and push it
Sorry, something went wrong.
No branches or pull requests
when I try to pass test, i get error, that "Charfield" don't have attribute "use_required_attribute"
to fix this I change few codelines
1.
Bona-Blog/blog/models/article_models.py
Line 10 in aa68f68
need replace to
from ckeditor.fields import RichTextField
Bona-Blog/blog/models/article_models.py
Line 39 in aa68f68
change to
body = RichTextField(blank=True)
after this all test passed success
The text was updated successfully, but these errors were encountered: