n-rook / thscoreboard

An open-source scoreboard for Touhou games.
Apache License 2.0
9 stars 7 forks source link

Add a custom field type for Django enums. #482

Closed n-rook closed 11 months ago

n-rook commented 11 months ago

The problem that caused me to write this PR is that enums get made available on Django forms as strings. This does work eventually; the string gets set on the model and is handled appropriately. But it's really annoying to work with programmatically. For example, equality checks fail in places you'd expect them to succeed.