0
votes
1answer
398 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 …
