Skip to content

Instantly share code, notes, and snippets.

@rruhlen
Created August 1, 2018 22:38
Show Gist options
  • Save rruhlen/80d08d04a0a95b362b6225509a2430bc to your computer and use it in GitHub Desktop.
Save rruhlen/80d08d04a0a95b362b6225509a2430bc to your computer and use it in GitHub Desktop.
capture a case custom field and display it when a specific value is saved in at least one of two case custom fields
{% capture feedback %}{{ custom_feedback }}{% endcapture %}
{% if case.custom_feedback == "A comment" or case.custom_feedback == "A question" %}
<div class="agent_ticket_section">
{{ feedback }}
</div>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment