I tried passing the page number from the generic list view into the
generic detail view with a url like: /specimen/244/?page=7. However
there does not seem to be any way to access GET data in the template.
Since there is no view, it can't be retrieved there and passed to the
template. (And in general it seems like it would be nice to pass GET
values directly into a template without needing the intervention of a
view. Is this possible?
Thanks in advance for help. I am new to Django so excuse me if I have
missed something obvious....
You need to wrap the generic detail view with your own detail view
which passes the specific GET variable you need through the
"extra_context" dictionary.