You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can confirm that if I stuff in a random value into store_id when HistoryStoreForm is used to initially render the page like this:
kwargs = {'initial': {'store_id': 55}}
then the Request button eventually returns this:
I'm not sure what store_id is supposed to refer to: did I miss some configuration setting when I scanned the docs?
Aside: I should perhaps mention that I am using a mixed template setup using Jinja2 for my stuff, and the normal Django Templates for stuff like this, and also that I'm on Django 3.x with Channels (but this is in dev, so no nginx, gunicorn etc). Any clues welcome!
The text was updated successfully, but these errors were encountered:
I'm trying to use the History panel for the first time in version 3.2. The panel shows up like this:
But clicking the "Refresh" button simply results in this:
I tried a bit of debugging, and it seems the rendered HTML is missing a value for "store_id":
which naturally enough results in a request like this:
I can confirm that if I stuff in a random value into store_id when
HistoryStoreForm
is used to initially render the page like this:then the Request button eventually returns this:
I'm not sure what store_id is supposed to refer to: did I miss some configuration setting when I scanned the docs?
Aside: I should perhaps mention that I am using a mixed template setup using Jinja2 for my stuff, and the normal Django Templates for stuff like this, and also that I'm on Django 3.x with Channels (but this is in dev, so no nginx, gunicorn etc). Any clues welcome!
The text was updated successfully, but these errors were encountered: