As a conference organizer, I've wanted to have various pieces of data in various spreadsheets at various times.
When we are discussing final talk selection, I want:
Speaker name
Talk title
Link to the whole proposal
Maybe another custom field or two (ex: talk length)
When I am sending out acceptance notification emails, I want:
Speaker name
Talk title
Email address
When I am working on the website, I want:
Speaker name
Talk title
Abstract
Bio
Twitter handle
Website
Avatar
When I am ordering t-shirts, I want:
Speaker name
T-shirt cut
T-shirt size
So I guess an export of all the data in CSV would work, since I could then just delete/hide columns I wasn't interested in... bonus points though for an export screen that shows all the questions with ticky boxes then generates a CSV with just the answers for those questions in it.
Right now my workaround is to rails c and poke around until i find the question IDs of the info i want, then make a query with that, and lots of .join(',').
Just wanted to write this down so I didn't forget... Hopefully I'll work on this before the next time I'm frantically using blinder with self-imposed, looming deadlines ;)
As a conference organizer, I've wanted to have various pieces of data in various spreadsheets at various times.
When we are discussing final talk selection, I want:
When I am sending out acceptance notification emails, I want:
When I am working on the website, I want:
When I am ordering t-shirts, I want:
So I guess an export of all the data in CSV would work, since I could then just delete/hide columns I wasn't interested in... bonus points though for an export screen that shows all the questions with ticky boxes then generates a CSV with just the answers for those questions in it.
Right now my workaround is to
rails c
and poke around until i find the question IDs of the info i want, then make a query with that, and lots of.join(',')
.Just wanted to write this down so I didn't forget... Hopefully I'll work on this before the next time I'm frantically using blinder with self-imposed, looming deadlines ;)