Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
24 lines (22 sloc)
783 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div xmlns="http://www.w3.org/1999/xhtml" lang="en" | |
xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers" | |
> | |
<f:layout name="Default"/> | |
<f:section name="Main"> | |
<div class="panel panel-default"> | |
<div class="panel-body"> | |
<f:render partial="{index.configuration.partialIdentifier}/Detail" arguments="{index: index}"/> | |
<div class="btn-group"> | |
<f:if condition="{settings.listPid}"> | |
<f:link.page pageUid="{settings.listPid}" class="btn btn-default"> | |
<span class="glyphicon glyphicon-arrow-left"></span> | |
<f:translate key="back"/> | |
</f:link.page> | |
</f:if> | |
<f:link.action action="detail" arguments="{index: index}" format="ics" class="btn btn-default">ICS/iCal | |
</f:link.action> | |
</div> | |
</div> | |
</div> | |
</f:section> | |
</div> |