Last active
December 25, 2015 22:09
-
-
Save renatooliveira/7047722 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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