I want to view the button that is selected/saved in the mongodb document ?
{{#if Checked}}
<div class="inline_input ">
<input type="radio" name="Gender" id="female" value={{customer.Gender"Female"}}">
<label for="female">Female</label>
</div>
{{else}}
<div class="inline_input ">
<input type="radio" name="Gender" id="male" value="{{customer.Gender "Male"}}">
<label for="male">Male</label>
</div>
{{/if}}
</div>