23 lines
617 B
Plaintext
23 lines
617 B
Plaintext
div.custom-field-single
|
|
div.custom-field-data
|
|
span.custom-field-name
|
|
<%- name %>
|
|
<% if (description){ %>
|
|
span.custom-field-description
|
|
<%- description %>
|
|
<% } %>
|
|
|
|
div.custom-field-value.js-value-view-mode
|
|
span
|
|
<% if (type=="url") { %>
|
|
a(href!="<%- value %>")
|
|
<%- value %>
|
|
<% } else { %>
|
|
<%- value %>
|
|
<% } %>
|
|
|
|
<% if (isEditable) { %>
|
|
div.custom-field-options
|
|
a.icon.icon-edit(href="", title="{{'COMMON.CUSTOM_ATTRIBUTES.EDIT' | translate}}")
|
|
<% } %>
|