mirror of
https://github.com/SkillDisplay/TYPO3ContentElements.git
synced 2024-11-14 16:46:10 +01:00
9f43ea427b
To avoid name clashes we use a more precise extension key. Also the namespace is adjusted accordingly. Resolves: #8
26 lines
951 B
HTML
26 lines
951 B
HTML
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
|
|
xmlns:be="http://typo3.org/ns/TYPO3/CMS/Backend/ViewHelpers"
|
|
xmlns:sd="http://typo3.org/ns/SkillDisplay/SkilldisplayContent/ViewHelpers"
|
|
data-namespace-typo3-fluid="true">
|
|
|
|
<a href="{be:uri.editRecord(
|
|
uid: uid,
|
|
table: 'tt_content'
|
|
)}">
|
|
<ol>
|
|
<f:for each="{skills}" as="skill">
|
|
<li>
|
|
<f:if condition="{skill.error}">
|
|
<f:then>
|
|
<f:be.infobox state="2">{skill.error}</f:be.infobox>
|
|
</f:then>
|
|
<f:else>
|
|
<strong>{skill.title}</strong><br>
|
|
{sd:verification.url(skill: skill.id, campaign: skilldisplay_campaign)}
|
|
</f:else>
|
|
</f:if>
|
|
</li>
|
|
</f:for>
|
|
</ol>
|
|
</a>
|
|
</html>
|