Skip to content
New issue

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

Docs fixes #917

Merged
merged 1 commit into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/_templates/donate.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{% if donate_url %}
<div class="globaltoc">
<div class="sidebar-tree">
<ul>
<li class="toctree-l1">
<a href="{{ donate_url }}">Donate</a>
<a class="reference internal" href="{{ donate_url }}">Donate</a>
</li>
</ul>
</div>
Expand Down
1 change: 0 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@

html_theme_options = {
"light_css_variables": {"color-brand-primary": "#268bd2"},
"description": "Declarative parsing and validation of HTTP request objects.",
}
html_logo = "_static/logo.png"

Expand Down
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ has support for:

**Query Parameters**
::

$ curl http://localhost:5000/\?name\='Freddie'
Hello Freddie

Expand Down
1 change: 1 addition & 0 deletions src/webargs/djangoparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def get(self, args, request):
"""

import django
import django.http

from webargs import core

Expand Down
Loading