jwjacobson / jazztunes

a jazz repertoire management app
https://jazztunes.org
GNU General Public License v3.0
3 stars 1 forks source link

got play feature working #139

Closed bbelderbos closed 8 months ago

bbelderbos commented 8 months ago

addresses https://github.com/jwjacobson/jazz_repertoire/issues/135

bbelderbos commented 8 months ago

@jwjacobson can you run this locally and see if it works to your liking and if the htmx flow makes sense? It also supports submit upon hitting enter in the search form in the play view

bbelderbos commented 8 months ago

FYI did a double check if sessions is unique to user -> it is:

In Django, sessions are unique to each user. This means that when you use request.session in your views, each user will have their own separate session data. The session data is stored on the server and is accessible only to the specific user through a session ID, typically stored in a cookie in the user's browser.

So the rep_tunes key would not get overridden across users.