mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 04:16:13 +01:00
1f263d8839
This is one more part of building CRUD functionality.
12 lines
456 B
HTML
12 lines
456 B
HTML
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
|
<f:security.ifAuthenticated>
|
|
<f:then>
|
|
<f:render section="main"/>
|
|
</f:then>
|
|
<f:else>
|
|
<div class="alert alert-danger" role="alert">
|
|
Please configure this plugin to be only visible if a website user is logged in.
|
|
</div>
|
|
</f:else>
|
|
</f:security.ifAuthenticated>
|
|
</html>
|