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
Hello,
check line 34 and 35 in moderate.html, there's a missing >:
<li {% if flagged_only %}class="selected"{% endif %}<a href="?flagged_only=1">flagged</a></li> <li {% if not flagged_only %}class="selected"{% endif %}<a href="?flagged_only=0">all</a></li>
should be:
<li {% if flagged_only %}class="selected"{% endif %}><a href="?flagged_only=1">flagged</a></li> <li {% if not flagged_only %}class="selected"{% endif %}><a href="?flagged_only=0">all</a></li>
The text was updated successfully, but these errors were encountered:
Fixed in my fork: http://github.com/copiesofcopies/django-gatekeeper/commit/9a85e6a669f01de3f36f4c5535b129c096c508a4
Sorry, something went wrong.
No branches or pull requests
Hello,
check line 34 and 35 in moderate.html, there's a missing >:
should be:
The text was updated successfully, but these errors were encountered: