{% extends 'jobs/base.html' %}
{% block toptab %}
Details for {{developer.name}}
{% endblock %}
{% block text %}
Details for {{job.name}}
Job details
Job Name
|
{{job.name}}
|
Job Description
|
{{job.description}}
|
Job Location
|
{{job.location}}
|
Budget
|
{% if budget %}
{{job.budget}}
{% else %}
None specified.
{% endif %}
|
Required on site?
|
{{job.on_site|yesno:"yes,no,maybe"}}
|
Company Details
Company Name
|
{{job.poster_name}}
|
Company email
|
{{job.email}}
|
Company website
|
{{job.website}}
|
About the company
|
{{job.other_info|linebreaks|urlize}}
|
{% if job.is_editable %}
Edit this
{% endif %}
{% endblock %}