Skip to content

Instantly share code, notes, and snippets.

@rbnrivera
Created November 14, 2011 21:54
Show Gist options
  • Save rbnrivera/1365320 to your computer and use it in GitHub Desktop.
Save rbnrivera/1365320 to your computer and use it in GitHub Desktop.
Agent
{% for first_interaction in case.interactions limit:1 %}
{% if first_interaction.os %}
<div class="agent_ticket_section" style="display:inline-block;width:120px;vertical-algin:top;"> <strong>OS:</strong><br/>{{first_interaction.os}}<br/>{{first_interaction.os_version}} </div>
{% endif %}
{% if first_interaction.browser %}
<div class="agent_ticket_section" style="display:inline-block;width:120px;vertical-algin:top;"> <strong>Browser:</strong><br/>{{first_interaction.browser}}<br/>{{first_interaction.browser_version}} </div>
{% endif %}
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment