Newbie backbone question:
Context: Building a shopping list with backbone
I have a model class called with name, description and tags (array) properties. I would
I'm pretty new to Backbone.js myself, so take this answer with a grain of salt, but I think ... you just make the second view. The whole point of de-coupling models and views is to make it so that you don't need to do anything to the models if all you want to do is do something different with your views.
So, I think you just need to create YourView2, tell it to use the same model as YourView1 and you should be in business.