Search Results

0
votes
1answer
381 views

how to do a select max in django

I have a list of objects how can I run a query to give the max value of a field: I'm using this code: def get_best_argument(self): try: arg = self.argume …
0
votes
1answer
86 views

how can I change to way a boolean prints in a django template

I have some django code that prints a BooleanField it is rendered as True or False, can I change the label to be Agree/Disagree or do I need to write logic for that in the template? …