Changes between Initial Version and Version 1 of Ticket #17868
- Timestamp:
- Mar 11, 2012, 2:10:36 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17868
- Property Resolution → invalid
- Property Status new → closed
-
Ticket #17868 – Description
initial v1 14 14 Models: 15 15 16 {{{ 16 17 # MySQL 17 18 class Realtor(models.Model): … … 29 30 class Meta: 30 31 db_table = "USERS_V" 31 32 }}} 32 33 33 34 My router: 34 35 36 {{{ 35 37 class Router(object): 36 38 … … 76 78 return model 77 79 return using_decorator 78 80 }}} 79 81 80 82 I use decorator 'using'. It work. But not work with AutocompleteForeignKey Fields.