Open zhannamatuzak opened 10 months ago
I faced the issue where 'crispy_forms_tags' is not a registered tag library. The problem is that the Crispy Forms tags are not being recognized in your Django template.
Steps to resolve the issue:
pip install django-crispy-forms
INSTALLED_APPS = [
# ...
'crispy_forms',
# ...
]
Issue: Unclosed tag on line 6: 'block'. Looking for one of:
{% endblock %}
A s USER, I would like to view a single post with well-readable and structured information by clicking on the blog post.
ECCEPTANCE CRITERIA:
✅When I click on a blog post, I should be directed to a dedicated page showing the full well-readable and structured content of that specific blog post.