{% extends 'job/job_base.html' %} {% from "_paginationhelper.html" import render_pagination %} {% block head_tail%} {{super()}} {% endblock %} {% block container %} {{ super() }}
List of jobs
{% if current_user.get_role() == "admin" %} {% endif %} {% for job in jobs %} {% if current_user.get_role() == "admin" %} {% endif %} {% endfor%}
ID Job Name Submission DateUserStatus Description
{{ job.id }} {{ job.name }} {{ job.submit_date }}{{ job.owner_id }}{{ job.last_status }} {{ job.description }}

New Job {{render_pagination(pagination)}}

{% endblock %} {% block body_tail %} {{super()}} {% endblock %}