Skip to content
Snippets Groups Projects
JobTeaser.html 1.13 KiB
Newer Older
{namespace be=TYPO3\CMS\Backend\ViewHelpers}

<f:asset.css identifier="sg_jobs-pluginpreview" href="EXT:sg_jobs/Resources/Public/StyleSheets/pluginpreview.css" />
<be:link.editRecord table="tt_content" uid="{uid}">
	<h4>
		<span class="badge text-bg-primary"><f:translate key="{headerLabel}" /></span>
	</h4>

	<table class="table table-striped table-bordered sg_jobs-backend-preview-table">
		<f:render partial="PluginDataTableHeader"/>

		<tbody>
		<tr>
			<th scope="row">
				<f:translate
					key="LLL:EXT:sg_jobs/Resources/Private/Language/locallang_db.xlf:tx_sgjobs_domain_model_job.offers_page"/>
			</th>
			<td>
				{data.offersPage}
			</td>
		</tr>

		<tr>
			<th scope="row">
				<f:translate
					key="LLL:EXT:sg_jobs/Resources/Private/Language/locallang_db.xlf:tx_sgjobs_domain_model_job.application_form_page"/>
			</th>
			<td>
				{data.applyPage}
			</td>
		</tr>

		<tr>
			<th scope="row">
				<f:translate
					key="LLL:EXT:sg_jobs/Resources/Private/Language/locallang_db.xlf:tx_sgjobs_domain_model_job.teaser_locations"/>
			</th>
			<td>
				{data.locations}
			</td>
		</tr>
		</tbody>
	</table>
</be:link.editRecord>