{% load base_tags %} {% load base_filters %} {% load i18n %}
{% with job.category_set as job_cat %} {% if job_cat.category %}
{% trans "Category:" %} {{ job_cat.category }} {% if job_cat.sub_category %} | {% trans "Sub Category:" %} {{ job_cat.sub_category }} {% endif %}
{% endif %} {% endwith %} {% if job.tags %}
Tags: {% for tag in job.tags|tag_split %} {{ tag }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %} {% if user.is_authenticated %} {% if not user.profile.is_superuser %} {% if user == job.creator or user == job.owner %}
Owned by you{% if not job.status_detail == "active" %} - status: {{ job.obj_status }}{% endif %}
{% endif %} {% endif %} {% if user.profile.is_staff or user == job.creator or user == job.owner %} {% meta_creator_owner job %} {% endif %} {% endif %}
{% trans "Print" %}
{% if user.profile.is_superuser %}
{% endif %}