Designed to hold a list of pages and page ranges for a book/magazine index.
A custom model field (and accompanying form field) that saves comma-separated pages and page ranges in human-readable string form. Includes some clean-up code, so that you can add a new page or range at the end of an existing entry, and it will put it in numeric order and combine runs into ranges. So this:
1 2 |
4-33, 43, 45, 60-65, 44, 59 |
becomes the tidy
1 2 |
4-33, 43-45, 59-65 |
NOTE: If you comment out the raising of the ValidationError
in the form field's validate() method, it will actually clean up any extraneous characters for you (which could be dangerous, but for me is usually what I want), so even this horrible mess:
1 2 |
;4-33, 46a fads i44 ,p45o |
gets cleaned to
1 2 |
4-33, 44-46 |
*This is the first custom field I've ever written for Django, so may be a little rough but seems to work fine.