frappe jinja srever call
<div>
<span>
{% set company_abbreviation = frappe.db.get_value('Company', 'TennisMart', 'abbr') %}
{{ company_abbreviation }}
</span>
<div>
{% set title, description = frappe.db.get_value('Task', 'TASK00002', ['title', 'description']) %}
<h3>{{ title }}</h3>
<p>{{ description }}</p>
</div>
</div>
<!-- output -->
<div>
<span>TM</span>
</div>