Created
November 14, 2011 21:54
-
-
Save rbnrivera/1365320 to your computer and use it in GitHub Desktop.
Agent
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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