Skip to content
Snippets Groups Projects
Commit 4cf8abd6 authored by Stefan Galinski's avatar Stefan Galinski :video_game:
Browse files

[BUGFIX] Fix exception if no value or description is set for the markers

parent db026995
No related branches found
Tags 5.7.10
No related merge requests found
......@@ -14,16 +14,24 @@
<table class="table table-hover">
<thead>
<tr>
<th>{f:translate(key:'backend.marker')}</th>
<th>{f:translate(key:'backend.value')}</th>
<th>{f:translate(key:'backend.description')}</th>
<th><f:translate key="backend.marker" /></th>
<th><f:translate key="backend.value" /></th>
<th><f:translate key="backend.description" /></th>
</tr>
</thead>
<f:for each="{selectedTemplate.marker}" as="marker">
<tr>
<td>{marker.marker}</td>
<td><f:translate key="{marker.value}">{marker.value}</f:translate></td>
<td><f:translate key="{marker.description}">{marker.description}</f:translate></td>
<td>
<f:if condition="{marker.value}">
<f:translate key="{marker.value}">{marker.value}</f:translate>
</f:if>
</td>
<td>
<f:if condition="{marker.description}">
<f:translate key="{marker.description}">{marker.description}</f:translate>
</f:if>
</td>
</tr>
</f:for>
</table>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment