Changes between Initial Version and Version 4 of Ticket #450
- Timestamp:
- Sep 29, 2005, 6:42:00 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #450
- Property Summary Dynamic lookup keywords for generics → [patch] Give generic views support for dynamic lookup keywords
- Property Component Admin interface → Generic views
- Property Owner changed from to
- Property Status new → assigned
-
Ticket #450 – Description
initial v4 6 6 7 7 So for the pattern: 8 9 {{{ 8 10 (r'^(?P<station_id>\w{4})/(?P<year>\d{4})/$','archive_year', info_dict), 11 }}} 9 12 10 13 We would define the dynamic_lookup_kwargs as: 14 15 {{{ 11 16 info_dict = { 12 17 ... … … 16 21 ... 17 22 } 23 }}}