We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8c15b7 commit 1a9fa6fCopy full SHA for 1a9fa6f
1 file changed
ietf/ipr/views.py
@@ -28,7 +28,7 @@ def updatelist(request):
28
29
def list_all(request, template):
30
"""Display a list of existing disclosures, using the provided template"""
31
- disclosures = ietf.ipr.models.IprDetail.objects.all()
+ disclosures = IprDetail.objects.all()
32
generic_disclosures = disclosures.filter(status__in=[1,3], generic=1)
33
specific_disclosures = disclosures.filter(status__in=[1,3], generic=0, third_party=0)
34
thirdpty_disclosures = disclosures.filter(status__in=[1,3], generic=0, third_party=1)
0 commit comments