#450 closed (wontfix)
[patch] Give generic views support for dynamic lookup keywords
Reported by: | slashzero | Owned by: | Jacob |
---|---|---|---|
Component: | Generic views | Version: | |
Severity: | normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
I have a database with weather data with daily updates for each weather station in the area. My first thought was to use the date base generic views. I wanted to be able to specify the station_id in the url so that the url is something like /weather/KAPF/2005 , but the generic view will only allow you to specify extra lookup keywords in the url pattern module, not dynamically in the url.
What I created was an extra argument called: 'dynamic_lookup_kwargs'
Simply use that the same way as the extra_lookup_kwargs except that you use the url keyword name instead of a hard coded value.
So for the pattern:
(r'^(?P<station_id>\w{4})/(?P<year>\d{4})/$','archive_year', info_dict),
We would define the dynamic_lookup_kwargs as:
info_dict = { ... 'dynamic_lookup_kwargs' : { 'station_id__exact' : 'station_id' } ... }
Attachments (1)
Change History (7)
by , 19 years ago
Attachment: | dynamic_generics.diff added |
---|
comment:1 by , 19 years ago
Summary: | Dynamic lookup keywords for generics → Give generic views support for dynamic lookup keywords |
---|
comment:2 by , 19 years ago
Component: | Admin interface → Generic views |
---|---|
Owner: | changed from | to
comment:3 by , 19 years ago
Summary: | Give generic views support for dynamic lookup keywords → [patch] Give generic views support for dynamic lookup keywords |
---|
comment:4 by , 19 years ago
Description: | modified (diff) |
---|---|
Status: | new → assigned |
(edited formatting of description)
comment:5 by , 19 years ago
Resolution: | → wontfix |
---|---|
Status: | assigned → closed |
I think the solution here is: Write your own view. This is a bit beyond the scope of generic views at this point.
comment:6 by , 18 years ago
Type: | enhancement |
---|
patch to do dynamic keyword lookups