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
Consider this an RFI,
I'm having trouble with adding links to the DRF serializers, seemingly, the "detail-view" doesn't exist anywhere, and I get a NoReverseMatch error
Reverse for 'sprint-detail' not found. 'sprint-detail' is not a valid view function or pattern name.
I am using latest django and python 3.6.
examples/scrum/board/serializers.py
Line 66 in ab0f6e8
if obj.sprint_id: links['sprint'] = reverse('sprint-detail', kwargs={'pk': obj.sprint_id}, request=request) if obj.assigned:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Consider this an RFI,
I'm having trouble with adding links to the DRF serializers, seemingly, the "detail-view" doesn't exist anywhere, and I get a NoReverseMatch error
Reverse for 'sprint-detail' not found. 'sprint-detail' is not a valid view function or pattern name.
I am using latest django and python 3.6.
examples/scrum/board/serializers.py
Line 66 in ab0f6e8
if obj.sprint_id:
links['sprint'] = reverse('sprint-detail',
kwargs={'pk': obj.sprint_id}, request=request)
if obj.assigned:
The text was updated successfully, but these errors were encountered: