This file contains hidden or 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
| <script type="text/javascript"> | |
| $(document).ready(function() | |
| { | |
| $("#ticket_custom1").rules("add", { | |
| required: true, | |
| messages: { | |
| required: "Required", | |
| } |
This file contains hidden or 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
| {% case system.language%} | |
| {%when 'de'%} | |
| German translation | |
| {%when 'es_es'%} | |
| Spanish translation | |
| {%when 'fr_ca'%} | |
| French Canadian translation | |
| {%when 'fr_fr'%} | |
| French translation | |
| {%when 'it'%} |
This file contains hidden or 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
| <script type="text/javascript"> | |
| $(function(){ | |
| $("#rate_article div:nth-child(1) a").click(function(){ | |
| $("#rate_article").css("visibility", "hidden"); | |
| window.setTimeout(showHello, 1000); | |
| }).next().text("{{article_yes}}"); | |
| $("#rate_article div:nth-child(2) a").click(function(){ | |
| $("#rate_article").css("visibility", "hidden"); | |
| window.setTimeout(showHello, 1000); |
This file contains hidden or 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
| <div class="case_one_col"> | |
| <span class="tab_label"> | |
| Quick JIRA Link | |
| </span> | |
| <div class="case_quick_jira"> | |
| <a id="quick_bug_{{case.id}}" href="https://site_name.atlassian.net/secure/CreateIssueDetails!init.jspa?pid=10013&issuetype=1&summary={{ case.subject | remove_first:'→' | remove_first:'←' |escape}}&priority=3&customfield_10721={{case.customer.company|escape}}%20-%20https://site_name.desk.com/agent/case/{{case.id}}%20%28{{ case.created_at | date: "%m/%d/%Y"}}%29&description={{case.emails.first.body|escape}}" target="jira">Bug</a> | |
| </div> | |
| </div> |
This file contains hidden or 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
| {% case system.language %} | |
| {% when 'de' %} | |
| {% assign customer_number_label = 'Kunden Nr.' %} | |
| {% assign order_number_label = 'Bestell Nr.' %} | |
| {% when 'en' %} | |
| {% assign customer_number_label = 'Customer No.' %} | |
| {% assign order_number_label = 'Order No.' %} | |
| {% endcase %} | |
This file contains hidden or 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
| <script type="text/javascript"> | |
| $(document).ready(function() { | |
| {% if case.custom_product == '11x' %} | |
| $(".case-{{case.id}} #ticket_custom6 option[value='Configuration']").remove(); | |
| $(".case-{{case.id}} #ticket_custom6 option[value='Defect']").remove(); | |
| $(".case-{{case.id}} #ticket_custom6 option[value='Enhancement']").remove(); | |
| $(".case-{{case.id}} #ticket_custom6 option[value='Production XP']").remove(); |
This file contains hidden or 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
| {% capture contactus_de_content %} | |
| <p><h1><b>Telefonsupport</b></h1> | |
| Der Telefonsupport ist in englischer Sprache verfügbar, 7 Tage/Woche, | |
| von 07:00 Uhr bis 20:00 Uhr Pacific Time (GMT -08:00), | |
| unter dieser Rufnummer:<p></p> | |
| <a href="tel:+18584953532">☎ +1 858 495 3532</a><br> | |
| <!-- {{ URI }} --> | |
| </p> |
This file contains hidden or 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
| <script type="text/javascript"> | |
| $(document).ready(function() { | |
| $("#ticket_custom1").rules("add", { | |
| required: true, | |
| messages: { | |
| required: "Required Field", | |
| } | |
| }); |
This file contains hidden or 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
| <script type="text/javascript"> | |
| $(function() { | |
| $(".rate_link").click(function() { | |
| $("#rate_article").hide(); | |
| $("#rate_article_container").html("{{system.snippets.thank_you}}"); | |
| }); | |
| }); | |
| </script> |
This file contains hidden or 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 topic in topics %} | |
| {% if topic.article_count > 0 %} | |
| {%if topic.id == 559243 or topic.id == 569843 or topic.id == 945865 %} | |
| {% else %} | |
| {% endif %} | |
| {% endif %} | |
| {% endfor %} |