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
Summary: Anchor tag link list is not working due to lack of corresponding ids in elements
Page: https://www.djangoproject.com/community/local/
Code to fix: https://github.com/django/djangoproject.com/blob/dfa7429ec929c1b5985782c17008cbb5854649f8/djangoproject/templates/aggregator/local-django-community.html
How to fix: Change this [line: 20]: <div class="section"> to this: <div id="{{ local_django_community.grouper.title }}-meetups" class="section">
<div class="section">
<div id="{{ local_django_community.grouper.title }}-meetups" class="section">
The text was updated successfully, but these errors were encountered:
I have opened a PR #1475, which fixes this issue.
In addition to the line mentioned there were two other lines where either id was missing or was incorrect
Sorry, something went wrong.
Thank you for taking care of that! I'll go ahead and close the issue. @prabs222
Successfully merging a pull request may close this issue.
Summary:
Anchor tag link list is not working due to lack of corresponding ids in elements
Page:
https://www.djangoproject.com/community/local/
Code to fix:
https://github.com/django/djangoproject.com/blob/dfa7429ec929c1b5985782c17008cbb5854649f8/djangoproject/templates/aggregator/local-django-community.html
How to fix:
Change this [line: 20]:
<div class="section">
to this:
<div id="{{ local_django_community.grouper.title }}-meetups" class="section">
The text was updated successfully, but these errors were encountered: