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
The blog_meta.html template does not create complete classnames for tags nor categories.
On each <a> within the <ul> of categories and tags, there are either of these classes:
<a>
<ul>
blog-categories-c-test
blog-categories-1
blog-tag-t-test
blog-tag-1
The {{ category.count }} and {{ tag.count }} render something.
{{ category.count }}
{{ tag.count }}
blog-categories-
blog-tag-
The {{ category.count }} and {{ tag.count }} render nothing.
Possible Fixes:
The text was updated successfully, but these errors were encountered:
fix(templates): blog_meta category & tag classname
476cc7b
nephila/djangocms-blog#710
e412651
Successfully merging a pull request may close this issue.
Description
The blog_meta.html template does not create complete classnames for tags nor categories.
Steps to reproduce
Versions
Expected behaviour
On each
<a>
within the<ul>
of categories and tags, there are either of these classes:blog-categories-c-test
orblog-categories-1
blog-tag-t-test
orblog-tag-1
The
{{ category.count }}
and{{ tag.count }}
render something.Actual behaviour
On each
<a>
within the<ul>
of categories and tags, there are either of these classes:blog-categories-
blog-tag-
The
{{ category.count }}
and{{ tag.count }}
render nothing.Additional information
Possible Fixes:
The text was updated successfully, but these errors were encountered: