Room detail pages are loading, room generator is working and creating rooms! Before I start writing any css, I want to figure out how to install sass. Django’s default system of lots of app-level static folders confuses the hell out of me when it comes to managing css, I’d like a single compiled stylesheet and sass partials can live at app-level if they have to.

It was surprisingly easy to adapt my room generator script to add to the database rather than write to html files, it looks like this-

 Room.objects.create( name = elaborateColor + " Room", description = roomDescription, colorHex = colorhex, colorName = elaborateColor)

(those arguments are all fields in the Room database model being set with variables containing strings I generated with markovify etc.