Changes between Initial Version and Version 1 of Ticket #28879
- Timestamp:
- Dec 4, 2017, 8:17:05 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28879
- Property Resolution → needsinfo
- Property Status new → closed
-
Ticket #28879 – Description
initial v1 1 1 I'm adjusting the width of some form fields because small integers such as qty and price don't need to be 20 long and the following code results in them becoming type = 'text' regardless. 2 2 {{{ 3 3 models.DecimalField: {'widget': TextInput(attrs={'size':'7'})}, 4 4 models.IntegerField: {'widget': NumberInput(attrs={'size':'3'})}, 5 5 }} 6 6 breaking other aspects. Sorry don't know if I need to add more detail etc... 7 7