waibu-db
Version:
10 lines (9 loc) • 372 B
HTML
<% for (const att of attachments) { %>
<c:grid-col col="4-lg 6-md">
<% if (attr.readonly) { %>
<a href="<%= decodeURI(att.url) %>" target="_blank"><%= att.fileName %></a>
<% } else { %>
<c:form-check x-model="selected" value="<%= att.fullPath %>" label="<a href='<%= att.url %>' target='_blank'><%= att.fileName %></a>" />
<% } %>
</c:grid-col>
<% } %>