Skip to content

Commit 305f67f

Browse files
committed
[spalenque] - #13688 * add submitter info to sangria jobs tables
1 parent fe462e2 commit 305f67f

2 files changed

Lines changed: 20 additions & 0 deletions

File tree

jobs/templates/Layout/SangriaPage_ViewJobsDetails.ss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
<tr>
66
<th>Title</th>
77
<th>Post Date</th>
8+
<th>Submitter</th>
9+
<th>Submitter Email</th>
810
<th>Url</th>
911
<th>Company</th>
1012
<th>Location Type</th>
@@ -16,6 +18,8 @@
1618
<tr>
1719
<td class="title"><a id="job{$ID}" href="#"></a>$Title</td>
1820
<td class="post-date">$PostDate</td>
21+
<td class="submitter">$PointOfContactName</td>
22+
<td class="submitter-email">$PointOfContactEmail</td>
1923
<td class="url"><a href="$Url">Link</a></td>
2024
<td class="company-name">$CompanyName</td>
2125
<td class="location_type">$LocationType</td>

jobs/templates/Layout/SangriaPage_ViewPostedJobs.ss

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
<tr>
99
<th class="title">Title</th>
1010
<th class="post-date">Post Date</th>
11+
<th class="submitter">Submitter</th>
12+
<th class="submitter-email">Submitter Email</th>
1113
<th class="url">Url</th>
1214
<th class="company-name">Company</th>
1315
<th class="location_type">Job Location</th>
@@ -20,6 +22,20 @@
2022
<tr>
2123
<td class="title"><a id="job{$ID}" href="#"></a>$Title</td>
2224
<td class="post-date">$PostedDate</td>
25+
<td class="submitter">
26+
<% if $RegistrationRequest %>
27+
$RegistrationRequest.PointOfContactName
28+
<% else %>
29+
Admin
30+
<% end_if %>
31+
</td>
32+
<td class="submitter-email">
33+
<% if $RegistrationRequest %>
34+
$RegistrationRequest.PointOfContactEmail
35+
<% else %>
36+
Admin
37+
<% end_if %>
38+
</td>
2339
<td class="url"><a href="{$BaseHref}community/jobs/view/{$ID}/{$Slug}">Link</a></td>
2440
<td class="company-name">$CompanyName</td>
2541
<td class="location_type">$FormattedLocation</td>

0 commit comments

Comments
 (0)