I'm building a very simple website where a user authenticates and accesses a personal page from where they can download their paychecks. I've already implemented the login view, that redirects the user to the profile page. Now in the profile page, I need to add a list of paychecks to download. In order to do that, I need to take them from a static sub-directory with the same name as the user:
static/paychecks/username
I've been reading about serving static files, but I can't figure out how to do this specifically. Any help will be much appreciated.