Skip to content
Snippets Groups Projects
Commit 6ffd4c61 authored by Torsten Oppermann's avatar Torsten Oppermann
Browse files

[TASK] Hide contact information in template

parent 75991c4f
No related branches found
No related tags found
1 merge request!3Version 1 5
......@@ -4,7 +4,8 @@
<div class="pia-card-header">
<h2>{job.title}</h2>
<h3>
<f:for each="{job.company}" as="company">{company.city}</f:for>
<f:for each="{job.company}" as="company">{company.city}</f:for>
<f:if condition="{job.alternativeStartDate}">
<f:then>
{job.alternativeStartDate}
......@@ -60,20 +61,24 @@
{job.contact.email}
</p>
</f:if>
<h3><f:translate key="frontend.apply_by_mail" /></h3>
<p>
<f:for each="{job.company}" as="company">{company.name}</f:for><br>
{job.contact.firstName} {job.contact.lastName}<br>
<f:for each="{job.company}" as="company">{company.street}</f:for><br>
<f:for each="{job.company}" as="company">{company.city}</f:for><br>
<f:if condition="{job.contact.email} && !{job.contact.hideInFrontend}">
<h3><f:translate key="frontend.apply_by_mail" /></h3>
<p>
<f:for each="{job.company}" as="company">{company.name}</f:for>
<br>
{job.contact.firstName} {job.contact.lastName}<br>
<f:for each="{job.company}" as="company">{company.street}</f:for>
<br>
<f:for each="{job.company}" as="company">{company.city}</f:for>
<br>
{job.contact.email}<br>
{job.contact.phone}
</p>
</p>
</f:if>
</div>
<div class="pia-card-footer">
<f:link.action class="cta-link" pageUid="{settings.applyPage}" controller="Joblist" action="applyForm"
pluginName="JobApplication" arguments="{uid: job.uid}">
pluginName="JobApplication" arguments="{uid: job.uid}">
<f:translate key="frontend.applyNow" />
</f:link.action>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment