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
I have made the rule in the url.py url(r'^docs/', include('rest_framework_docs.urls', namespace='docs')),
and i can server the doc app but all links are wrong:
/docs/api/notes/uid/add but it should be /api/notes/uid/add
the rest is working great. Thank you for your good work.
django 1.10.5 drf 3.5.3 drf docs 0.0.11
The text was updated successfully, but these errors were encountered:
Don't you have other codes on above lines?
Sorry, something went wrong.
@xncbf This is actually an issue. I will paste a code snippet here to highlight this.
url(r'^api/', include(api_urls)), and api_urls can be a list of urls. In this case, the DRF Docs doesn't detects the api/ prefix
url(r'^api/', include(api_urls)),
api_urls
api/
Also experiencing this.
No branches or pull requests
I have made the rule in the url.py
url(r'^docs/', include('rest_framework_docs.urls', namespace='docs')),
and i can server the doc app but all links are wrong:
/docs/api/notes/uid/add
but it should be /api/notes/uid/add
the rest is working great. Thank you for your good work.
django 1.10.5
drf 3.5.3
drf docs 0.0.11
The text was updated successfully, but these errors were encountered: