Skip to content
Snippets Groups Projects
Commit 230e1f05 authored by Robert Goldmann's avatar Robert Goldmann
Browse files

#338 - only show name and description in template overview if they are filled

parent 00e00de7
Branches
Tags
No related merge requests found
Pipeline #3512 passed
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
</#macro> </#macro>
<#macro templateName template> <#macro templateName template>
<#if template.getName()??> <#if template.getName()?has_content>
<tr> <tr>
<td class="template-content-label">${locale.getString("transaction.new.label.name")}</td> <td class="template-content-label">${locale.getString("transaction.new.label.name")}</td>
<td>${template.getName()}</td> <td>${template.getName()}</td>
...@@ -90,7 +90,7 @@ ...@@ -90,7 +90,7 @@
</#macro> </#macro>
<#macro templateDescription template> <#macro templateDescription template>
<#if template.getDescription()??> <#if template.getDescription()?has_content>
<tr> <tr>
<td class="template-content-label">${locale.getString("transaction.new.label.description")}</td> <td class="template-content-label">${locale.getString("transaction.new.label.description")}</td>
<td>${template.getDescription()}</td> <td>${template.getDescription()}</td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment