I have a page in my app with a list of Projects the user is working on.
When they want to add a new project, I show a modal form to get the name of the project.
You can put your html containing this into a {{#constant}} block. Docs on constant
e.g
{{#constant}}
{{#each ...}}
....
{{/each}}
{{/constant}}
Another option is to disable reactivity in your template helper e.g if you have
Template.home.mydata = function() { return MyCollection.find() }
change this to use reactive:false as an option
Template.home.mydata = function() { return MyCollection.find({}, {reactive:false}) }
This way the initial changes are shown but any updates aren't used so there wouldn't be a re-render.