Skip to content

Instantly share code, notes, and snippets.

@renatooliveira
Last active December 25, 2015 22:09
Show Gist options
  • Select an option

  • Save renatooliveira/7047722 to your computer and use it in GitHub Desktop.

Select an option

Save renatooliveira/7047722 to your computer and use it in GitHub Desktop.
def get_comorbities(self):
return [
field.verbose_name for field in self._meta._fields()
if isinstance(field, models.BooleanField)
and getattr(self, field.get_attname())
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment