Updating a field across a note

Ya, you can do that through the template plugin. And to know more in the GitHub Repo
And the syntax should be like this:

---
name: text
project:
  label: Select a project
  type: dropdown(project 1, project 2, project 3)
show_summary:
  label: Add summary in note?
  type: boolean

---

Hi {{ name }},
This is a report for {{ project }}.

{{#if show_summary}}
## Summary
> Enter the summary here.
{{/if}}

2 Likes