Skip to content
Snippets Groups Projects
Commit 2fa520a6 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[team] Fix share counting

parent b55ed9db
No related branches found
No related tags found
Loading
......@@ -99,15 +99,15 @@ class Team(models.Model):
used_at += self.shared_algorithms.count()
used_at += self.shared_databases.count()
used_at += self.shared_dataformats.count()
used_at += self.shared_environment.count()
used_at += self.shared_environments.count()
used_at += self.shared_experiments.count()
used_at += self.shared_librarys.count()
used_at += self.shared_plotterparameters.count()
used_at += self.shared_plotters.count()
used_at += self.shared_searchs.count()
used_at += self.shared_toolchains.count()
used_at += self.usable_algorithm.count()
used_at += self.usable_library.count()
used_at += self.usable_algorithms.count()
used_at += self.usable_librarys.count()
used_at += self.usable_plotterparameters.count()
used_at += self.usable_plotters.count()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment