Helpers in Templates
<h2>{{t 'greeting' name=@inputs.first_name}}</h2>
{{#if (or (and @inputs.has_permission @inputs.is_logged_in) (not @inputs.authentication))}}
<p>{{t 'dashboard_access_granted'}}</p>
<p>{{t 'balance'}}: {{number @inputs.balance}}</p>
{{else}}
<p>{{t 'dashboard_access_denied'}}</p>
{{/if}}Translation and internationalization
{{t 'greeting' name=@inputs.first_name}}
{{t 'balance'}}: {{number @inputs.balance}}Language and time zone resolution
Combining helpers
API reference
Translation and internationalization helpers
Name
Behaviour
Example
Logical helpers
Name
Behaviour
Example
Comparison helpers
Name
Behaviour
Example
Math helpers
Name
Behaviour
Example
Array helpers
Name
Behaviour
Example
String helpers
Name
Behaviour
Example
Object helpers
Name
Behaviour
Example
Last updated