{% extends "base.html" %} {% block content %} Fork me on GitHub

JOBHUNTR

"Get a job."

{% comment %}

Hint: Use Boolean Operators (*Must be capitals)
Example: Manager NOT Finance AND (KE OR United Nations OR UAE OR United States OR HK)
(Needs a better search backend for boolean search to work)

{% endcomment %}

{% if query %} {% if page.paginator.count > 0 %}

Page {{ page.number }} of {{ page.paginator.num_pages }} page{{ page.paginator.num_pages|pluralize }} ({{ page.paginator.count }} result{{ page.paginator.count|pluralize }})

{% else %}

No results

{% endif %}

{{ page.count }}

{% if page.has_previous or page.has_next %}
{% if page.has_previous %}{% endif %} « Previous {% if page.has_previous %}{% endif %} | {% if page.has_next %}{% endif %} Next » {% if page.has_next %}{% endif %}
{% endif %}
{% for result in page.object_list reversed %} {% comment %}{% empty %} {% endcomment %} {% endfor %}
{{ result.object.title }} Age: {{ result.object.added_on|timesince }} Country: {{ result.object.source.country.name }}
No results found.
{% if page.has_previous or page.has_next %}
{% if page.has_previous %}{% endif %} « Previous {% if page.has_previous %}{% endif %} | {% if page.has_next %}{% endif %} Next » {% if page.has_next %}{% endif %}
{% endif %} {% endif %}
{% endblock %}