-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjob.tpl
52 lines (52 loc) · 2.11 KB
/
job.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{include file="header.tpl"}
<div id="left-content">
<div id="content">
<div id="job-listings"></div><!-- #job-listings -->
{include file="job-details.tpl"}
{if $CURRENT_PAGE == $URL_JOB}
<div id="job-bottom" class="clearfix">
<div id="job-post-utils">
<div id="number-views">
{$translator->translate("jobs.viewed", "<strong>`$job.views_count`</strong>")}
</div><!-- #number-views -->
<a href="{$back_link}" title="category home">« {$translations.notfound.back}</a><br />
{$translations.jobs.report_fake} <a href="#" onclick="Jobber.ReportSpam('{$BASE_URL}report-spam/', {$job.id}); return false;" title="report fake ad">{$translations.jobs.report_it}</a>
<span id="report-spam-response"></span><br />
<a href="#" onclick="Jobber.SendToFriend.showHide(); return false;" title="{$translations.recommend.title}">{$translations.recommend.title}</a>
</div><!-- #job-post-utils -->
</div><!-- #job-bottom -->
<div id="send-to-friend" style="display: none;">
<form id="frm-send-to-friend" method="post" action="{$BASE_URL}send-to-friend/">
<table>
<tr>
<td class="send-to-friend-address-label"><label for="friend_email">{$translations.recommend.friend_email_label}:</label></td>
<td><input type="text" name="friend_email" id="friend_email" maxlength="50" size="30" /></td>
</tr>
<tr>
<td><label for="my_email">{$translations.recommend.your_email_label}:</label></td>
<td><input type="text" name="my_email" id="my_email" maxlength="50" size="30" /></td>
</tr>
<tr>
<td colspan="2">
<input type="submit" name="submit" id="submit" value="{$translations.recommend.submit}" />
<span id="send-to-friend-response"></span>
</td>
</tr>
</table>
</form>
</div><!-- #send-to-friend -->
{literal}
<script type="text/javascript">
$(document).ready(function()
{
Jobber.SendToFriend.init();
});
</script>
{/literal}
{/if}
</div><!-- /content -->
</div>
<div id="sidebar">
{include file="sidebar.tpl"}
</div>
{include file="footer.tpl"}