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
If you create 2 release notes for the same date it can (does for me) show the oldest one as the "latest" release note.
This seems to be because of this: ordering = ["-release_date"]
That's a date object, not a date time. So maybe it should be ordering = ["-release_date", -"modified"]
or something like that?
The text was updated successfully, but these errors were encountered:
If you create 2 release notes for the same date it can (does for me) show the oldest one as the "latest" release note.
This seems to be because of this:
ordering = ["-release_date"]
That's a date object, not a date time. So maybe it should be
ordering = ["-release_date", -"modified"]
or something like that?
The text was updated successfully, but these errors were encountered: