We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
// hello-page.jinja {% if query.is_admin %} <div> Hello, {query.name} (Admin)</div> {% else %} <div> Hello, {query.name}</div> {% endif %}
get /hello { query { name: str, is_admin: bool = false, } return render("hello-page.jinja", query); }