2020-09-22 14:03:20 +02:00
|
|
|
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
|
|
|
|
xmlns:be="http://typo3.org/ns/TYPO3/CMS/Backend/ViewHelpers"
|
2021-01-25 16:02:17 +01:00
|
|
|
xmlns:sd="http://typo3.org/ns/SkillDisplay/SkilldisplayContent/ViewHelpers"
|
2020-09-22 14:03:20 +02:00
|
|
|
data-namespace-typo3-fluid="true">
|
|
|
|
|
|
|
|
<a href="{be:uri.editRecord(
|
|
|
|
uid: uid,
|
|
|
|
table: 'tt_content'
|
|
|
|
)}">
|
|
|
|
<ol>
|
|
|
|
<f:for each="{skillSets}" as="skillSet">
|
|
|
|
<li>
|
2020-10-05 09:40:54 +02:00
|
|
|
<f:if condition="{skillSet.error}">
|
|
|
|
<f:then>
|
|
|
|
<f:be.infobox state="2">{skillSet.error}</f:be.infobox>
|
|
|
|
</f:then>
|
|
|
|
<f:else>
|
|
|
|
<strong>{skillSet.title}</strong><br>
|
2020-11-27 23:10:46 +01:00
|
|
|
{sd:verification.url(skillSet: skillSet.id, campaign: skilldisplay_campaign)}
|
2020-10-05 09:40:54 +02:00
|
|
|
</f:else>
|
|
|
|
</f:if>
|
2020-09-22 14:03:20 +02:00
|
|
|
</li>
|
|
|
|
</f:for>
|
|
|
|
</ol>
|
|
|
|
</a>
|
|
|
|
</html>
|