I\'m trying to loop through objects from my database in the template and one of the things I want to display is the difference between two of the fields in the table. Is th
Django templates are designed not to do computation. You should adjust your games list in the view, then display it in the template:
games
# views.py for game in games: game.chars_diff = game.num_Players - game.accepted_Characters # template.html <td><p>{{ game.chars_diff }}</p></td>