Zwischenstand
This commit is contained in:
21
Resources/Private/Templates/Bookmark/PersonalList.html
Normal file
21
Resources/Private/Templates/Bookmark/PersonalList.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<html data-namespace-typo3-fluid="true"
|
||||
xmlns="http://www.w3.org/1999/xhtml" xmlns:f="http://typo3.org/ns/fluid/ViewHelpers">
|
||||
|
||||
<f:layout name="Default"/>
|
||||
|
||||
<f:section name="main">
|
||||
|
||||
|
||||
<ul>
|
||||
<f:for each="{bookmarks}" as="bookmark">
|
||||
<li>
|
||||
<span><f:link.action action="delete" arguments="{object_uid:bookmark.object_uid, tablename: bookmark.tablename}">[Löschen]</f:link.action></span>
|
||||
<a href="{bookmark.url}">{bookmark.title}</a>
|
||||
</li>
|
||||
</f:for>
|
||||
|
||||
</ul>
|
||||
|
||||
</f:section>
|
||||
|
||||
</html>
|
@@ -0,0 +1,24 @@
|
||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
||||
<f:layout name="Widget/Widget" />
|
||||
<f:section name="main">
|
||||
|
||||
<div class="widget-table-wrapper">
|
||||
<table class="widget-table">
|
||||
<f:for each="{items}" as="item">
|
||||
<tr>
|
||||
<td>
|
||||
<p>{item.title -> f:format.crop(maxCharacters: 180)}</p>
|
||||
</td>
|
||||
<td>
|
||||
{item.number}
|
||||
</td>
|
||||
</tr>
|
||||
</f:for>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
</f:section>
|
||||
<f:section name="footer">
|
||||
|
||||
</f:section>
|
||||
</html>
|
Reference in New Issue
Block a user