<% if (loading) { %>
<%- elementName %>

<%= i18n._('chargement') %>

<% } else if (element.id === '') { %>
<%- elementName %>
<% } else { %>
<% if (element.link != null) {%> <% } %> <% if (type === 'contact') { %> <% if (variables['contactFirstName'] !== '' || variables['contactLastName'] !== '') {%> <%= variables['contactFirstName'] %><%= variables['contactFirstName'] !== '' && variables['contactLastName'] !== '' ? ' ' : '' %><%= variables['contactLastName'] %> <% } else {%> <%- elementName %> <% } %> <% } else if (type === 'company') {%> <% if (variables['companyName'] !== '') {%> <%= variables['companyName'] %> <% } else {%> <%- elementName %> <% } %> <% } else if (type === 'file') {%> <% if (variables['fileLabel'] !== '') {%> <%= variables['fileLabel'] %> <% } else {%> <%- elementName %> <% } %> <%- layout.id_visible ? ' (#' + element.id + ')' : '' %> <% } else if (type === 'ticket') {%> <% if (variables['ticketLabel'] !== '') {%> <%= variables['ticketLabel'] %> <% } else {%> <%- elementName %> <% } %> <%- layout.id_visible ? ' (#' + element.id + ')' : '' %> <% }%> <% if (element.link != null) {%> <% } %>
<% if (error_message !== '') { %>
<%- error_message %>
<% } %>

<%= i18n._('chargement') %>

<% if (type === 'contact') { %> <% if (variables['contactTitle'] !== '') {%>
<%= variables['contactTitle'] %>
<% } %>
    <% if (variables['contactPhoneNumber'] !== '') {%>
  • <% //TRANSLATORS: Libellé pour un numéro de téléphone (Domicile: +33 5 45 12 78 35) %> <%= i18n._('domicile')%><%= variables['contactPhoneNumber'] %>
  • <% } %> <% if (variables['contactMobilePhoneNumber'] !== '') {%>
  • <% //TRANSLATORS: Libellé pour un numéro de téléphone (Mobile: +33 5 45 12 78 35) %> <%= i18n._('mobile')%><%= variables['contactMobilePhoneNumber'] %>
  • <% } %> <% if (variables['contactWorkPhoneNumber'] !== '') {%>
  • <% //TRANSLATORS: Libellé pour un numéro de téléphone (Professionnel: +33 5 45 12 78 35) %> <%= i18n._('professionnel')%><%= variables['contactWorkPhoneNumber'] %>
  • <% } %> <% if (variables['contactEmail'] !== '') {%>
  • <%= i18n._('email')%><%= variables['contactEmail'] %>
  • <% } %> <% if (variables['contactTwitterId'] !== '') {%>
  • Twitter<%= variables['contactTwitterId'] %>
  • <% } %> <% if (variables['contactFacebookId'] !== '') {%>
  • Facebook<%= variables['contactFacebookId'] %>
  • <% } %> <% if (variables['contactPrimaryAddress'] !== '') {%>
  • <%= i18n._('Adresse')%>
    <%= variables['contactPrimaryAddress'] || '' %>
    <%= variables['contactSecondaryAddress'] || '' %>
    <% const firstPart = variables['contactZipCode'] + (variables['contactZipCode'] !== '' && variables['contactCity'] !== '' ? ' ' : '') + variables['contactCity']; %> <% const lastPart = (firstPart !== '' && variables['contactCountry'] !== '' ? ' - ' : '') + variables['contactCountry']; %> <%= firstPart %><%= lastPart %>
  • <% } %>
<% } else if (type === 'company') {%>
    <% if ( variables['companyPrimaryAddress'] || variables['companySecondaryAddress'] || variables['companyZipCode'] !== '' || variables['companyCity'] !== '' || variables['companyCountry'] !== '' ) { %>
  • <%= i18n._('Adresse')%>
    <%= variables['companyPrimaryAddress'] || '' %>
    <%= variables['companySecondaryAddress'] || '' %>
    <% if (variables['companyZipCode'] !== '' || variables['companyCity'] !== '' || variables['companyCountry'] !== '') {%> <% const firstPart = variables['companyZipCode'] + (variables['companyZipCode'] !== '' && variables['companyCity'] !== '' ? ' ' : '') + variables['companyCity']; %> <% const lastPart = (firstPart !== '' && variables['companyCountry'] !== '' ? ' - ' : '') + variables['companyCountry']; %> <%= firstPart %><%= lastPart %> <% } %>
  • <% } %> <% if (variables['companyPhoneNumber'] !== '') {%>
  • <% //TRANSLATORS: Libellé pour un numéro de téléphone (Téléphone: +33 5 45 12 78 35) %> <%= i18n._('telephone')%><%= variables['companyPhoneNumber'] %>
  • <% } %> <% if (variables['companyEmail'] !== '') {%>
  • <%= i18n._('email')%><%= variables['companyEmail'] %>
  • <% } %>
<% } else if (type === 'ticket') {%> <% if (variables['ticketOpenDate'] !== '') {%> <% //TRANSLATORS: %s: date d'ouverture de quelque chose (comme un ticket d'incident, un dossier client...) %>
<%= i18n.sprintf(_.escape(i18n._('ouvert_le_%s')), variables['ticketOpenDate']) %>
<% } %> <% if (variables['ticketStatus'] !== '') {%>
<%= variables['ticketStatus'] %>
<% } %> <% }%>
    <% _.each(layout.fields, function (field, index) { %> <% if (variables[field.variable] !== undefined) { return true; } %>
  • <%- field.label %> <% var fieldValue = element.fields[field.name] %> <% fieldValue = helper.formatField(fieldValue, field, actions, interactionCard) %> <%= (fieldValue === '') ? '-' : fieldValue %>
  • <% }); %>
<% if (type === 'contact') { %> <% if (variables['contactSex'] !== '') {%>
<%= variables['contactSex'] %> <% if (variables['contactBirthday'] !== '') {%> | <%= variables['contactBirthday'] %> <% } %>
<% } %> <% if (layout.id_visible) {%>
#<%- element.id %>
<% } %>
<% } else if (type === 'company') {%> <% if (variables['companyType'] !== '') {%>
<%= variables['companyType'] %>
<% } %> <% if (layout.id_visible) {%>
#<%- element.id %>
<% } %> <% } else if (type === 'ticket') {%> <% if (variables['ticketPriority'] !== '') {%>
<%= variables['ticketPriority'] %>
<% } %> <% }%>
<% if (type === 'contact' && variables['contactNote'] !== '') {%>
<%= variables['contactNote'] %>
<% } %>
<% } %>