0x213F / jukebox-radio-django

Part Jukebox. Part Radio.
Other
1 stars 0 forks source link

Update "requests" admin #73

Open 0x213F opened 3 years ago

0x213F commented 3 years ago

Summary

The requests admin page keeps a data log of every request sent through Python code. For example, the Django server calls Spotify servers to search for results. Whatever Spotify sends back to us, we log. That log can be accessed via the requests admin page.

(for localhost) http://localhost:8000/admin/networking/request/

Screen Shot 2021-03-29 at 4 49 08 PM

This is the most commonly used admin page because it is used by developers to debug requests. It would be really nice if the page looked a little cleaner than it does now :)

Idea no.1

Add search.

Idea no.2

Add columns. In order to see what columns you could display, look at the request model. See what fields are on the request model, then try displaying relevant ones.

Idea ???

Those are the 2 high value things that I would like on the admin. If there is anything else you'd like to add, go for it (but totally optional).