I\'m trying to store a number in django that looks like this:
000001
My problem is that if I type this inside an IntegerField it gets conve
Don't store it with the leading zeros. Format it on output instead:
(in view: value = 1) {{ value|stringformat:"04d" }} # displays as 0001