Constants

The Planning Poker app uses these constants for the choices defined in the Models fields.

FIBONACCI_CHOICES = [('1', '1'), ('2', '2'), ('3', '3'), ('5', '5'), ('8', '8'), ('13', '13'), ('21', '21'), ('34', '34')]

The options for a story’s possible points.

TOO_LARGE = 'Too large'

The value which represents the story’s scope being too large.

NO_IDEA = 'No idea'

The value which represents a voter not being able to estimate a story’s scope.

NON_POINT_OPTIONS = [('Too large', 'Too large'), ('No idea', 'No idea')]

The options which voters can choose, but are not valid story point options.

ALL_VOTING_OPTIONS = [('1', '1'), ('2', '2'), ('3', '3'), ('5', '5'), ('8', '8'), ('13', '13'), ('21', '21'), ('34', '34'), ('Too large', 'Too large'), ('No idea', 'No idea')]

All the options a voter has when voting.