mirror of
https://github.com/SkillDisplay/TYPO3ContentElements.git
synced 2024-11-23 03:36:09 +01:00
Daniel Siepmann
da3aed135c
Allow editors to add new content element "skills". The element contains an input for a comma separated list of skill IDs. A preview in backend is shown. Frontend rendering is provided.
19 lines
601 B
HTML
19 lines
601 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/Typo3Extension/ViewHelpers"
|
|
data-namespace-typo3-fluid="true">
|
|
|
|
<a href="{be:uri.editRecord(
|
|
uid: uid,
|
|
table: 'tt_content'
|
|
)}">
|
|
<ol>
|
|
<f:for each="{skills}" as="skill">
|
|
<li>
|
|
<strong>{skill.title}</strong><br>
|
|
{sd:verification.url(skill: skill.id)}
|
|
</li>
|
|
</f:for>
|
|
</ol>
|
|
</a>
|
|
</html>
|