-
Notifications
You must be signed in to change notification settings - Fork 0
Description
It is clear that it would be better to use a SPA (Single Page App) client instead of using django templates on the server - something that is out of date (as pointed out by @saborrie).
This would require a lot of time moving each client page over to a JS Aurelia route. For example, the notifications.py view in basic_client would have notifications.js and notifications.html files. The JS file would dictate the apps behaviour and the HTML file would display the loaded notifications or a loading bar, etc.
A lot of the HTML can be recycled but there are a few format changes. In the long run, this makes a lot more sense because the client is very messy at the moment and it is basically doing HTTP requests whilst creating a HTTP response, which is unnecessary.