Matt,
controller in this case.
Here is a small tip:
What helps me sometimes, is to say it outloud ( despite the fear to look like a lunatic :-) )
Anytime you think about your code and you can say outloud: "generate", "create", "destroy" - most likely you should do this in a controller.
If you are thinking about a piece of code in terms of "validate", "data", "complex search", mostly likely should be offloaded to your model.
If you are thinking well this form should be 5 pixels over, or that button should be green - that's view.
Sometimes this may be confusing. Here is an example from my recent project. Let's say you want to show certain parts to admins and some to users, there are two approaches. One is to load different layout in your controller based on permissions, the other is to check for permissions as you go through view. Both have their merits. The first one is more mvc - but will create duplication of code, the second approach messier and less mvc but keeps your code DRYer. There is also a third approach ( that I ended up using) to use 2nd approach - have just one layout, but offload all of the difficult parts that have dual or tripple views based on permitions into partials.
Hope that helps.