taiga-front/app/partials/custom-attributes/custom-attribute-value.jade

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}}")
<% } %>