From the documention I can see how you can create your own django auth backend. Though it can get slightly confusing considering the session and user details are slit across 3 tables (auth_user, Session and also a custom table when storing your other authorzsation token).
I know you can set the session timeouts on session within the views. However I wonder if there is another (or what is the best) method to set your django session timeout at the same time you create a new session within your custom auth backend.
Basically my other auth system has a total timeout of 24hours and an idle of 1hr, so I want to couple these timeouts as close as poss to the django session.
Hope this makes sense .
Thanks