Add button to add custom certificate in certificate list

This commit is contained in:
Julian Gassner
2025-01-22 15:33:02 +00:00
parent 9687e9e450
commit e6f61e297f
9 changed files with 58 additions and 35 deletions

View File

@@ -6,6 +6,10 @@ if (subtitle) { %>
<p class="h4 text-muted font-weight-normal mb-7"><%- subtitle %></p>
<% }
if (link) { %>
<a class="btn btn-<%- btn_color %>" href="#"><%- link %></a>
if (links && links.length) { %>
<% links.forEach(function(link, index) { %>
<div style="margin-bottom: 10px;">
<a class="btn btn-<%- btn_color %>" href="#" data-index="<%- index %>"><%- link %></a>
</div>
<% }); %>
<% } %>