Skip to content

Commit

Permalink
OpenConceptLab/ocl_issues#1633 | updated lables/notes
Browse files Browse the repository at this point in the history
  • Loading branch information
snyaggarwal committed Sep 25, 2023
1 parent 6fa74e7 commit 89d6712
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion core/collections/reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ def retired(self):

class CollectionVersionReport(AbstractReport):
queryset = Collection.objects.exclude(version=HEAD)
name = 'Collection Versions (excluding HEAD)'
name = 'Collection Versions'
id = 'collection_versions'
note = 'Excludes HEAD versions'
select_related = ['created_by']
verbose_fields = [
'version',
Expand Down
3 changes: 2 additions & 1 deletion core/sources/reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ def retired(self):

class SourceVersionReport(AbstractReport):
queryset = Source.objects.exclude(version=HEAD)
name = 'Source Versions (excluding HEAD)'
name = 'Source Versions'
id = 'source_versions'
note = 'Excludes HEAD versions'
select_related = ['created_by']
verbose_fields = [
'version',
Expand Down

0 comments on commit 89d6712

Please sign in to comment.