| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <html
- xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
- xmlns:core="http://typo3.org/ns/TYPO3/CMS/Core/ViewHelpers"
- xmlns:be="http://typo3.org/ns/TYPO3/CMS/Backend/ViewHelpers"
- data-namespace-typo3-fluid="true">
- <f:layout name="Default" />
- <f:section name="Content">
- <h1>Auflistung Chatbot Begriffe</h1>
- <f:if condition="{terms}">
- <div class="table-fit">
- <table id="chatbotbegriffmgt-terms" class="table table-striped table-hover table-vertical-top">
- <thead>
- <tr>
- <td><b>Typ<b></td>
- <td><b>Kategorie</b></td>
- <td><b>Begriffe</b></td>
- <td><b>Link</b></td>
- <td></td>
- </tr>
- </thead>
- <tbody>
- <f:for each="{terms}" as="term">
- <tr>
- <td>
- {term.type}
- </a>
- </td>
- <f:if condition="{term.category} != '0' ">
- <f:then>
- <td>
- {term.category}
- </td>
- </f:then>
- <f:else>
- <td></td>
- </f:else>
- </f:if>
- <td>
- {term.terms -> f:format.crop(maxCharacters: 25)}
- </td>
- <f:if condition="{term.url} != '0' ">
- <f:then>
- <td>{term.url}</td>
- </f:then>
- <f:else>
- <td></td>
- </f:else>
- </f:if>
- <td class="col-control">
- <div class="btn-group" role="group">
- <be:link.editRecord class="btn btn-default" table="tx_begriffmgt_domain_model_term" uid="{term.uid}" title="Bearbeiten">
- <core:icon identifier="actions-open" />
- </be:link.editRecord>
- </div>
- </td>
- </tr>
- </f:for>
- </tbody>
- </table>
- </div>
- </f:if>
- </f:section>
- </html>
|