You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
self.stdout.write(f'Reported on Publications page: {on_page}')
28
+
self.stdout.write('The number on the publications page includes only those from the DMCC and the grant numbers and omits publications without year-of-publication information and omits those from the BMDB.')
29
+
self.stdout.write()
30
+
31
+
without_year=dmcc_pubs.union().count()
32
+
self.stdout.write(f'Including publications without a year (and not from BMDB): {without_year}')
33
+
self.stdout.write()
34
+
35
+
total=Publication.objects.count()
36
+
self.stdout.write(f'All publications, including those from BMDB: {total}')
0 commit comments