integerFields の値を解析して値を返す方法を探しています。
scoreChans = models.IntegerField(0)
scoreChansSet = models.BooleanField(False)
scoreYatzy = models.IntegerField(0)
scoreYatzySet = models.BooleanField(False)
scoreTotal = scoreChans + scoreYatzy
しかし、これは次のようになります: TypeError: unsupported operand type(s) for +: 'IntegerField' and 'IntegerField'
これらのフィールドから値を取得する方法はありますか?