{% extends "JMSJobQueueBundle::base.html.twig" %} {% import "JMSJobQueueBundle:Job:macros.html.twig" as macros %} {% block title %}Overview - {{ parent() }}{% endblock %} {% block content %}

{% if jobPager.haveToPaginate %} {{ jobPagerView.render(jobPager, jobPagerGenerator)|raw }} {% endif %} {% if jobPager.currentPage == 1 and jobsWithError|length > 0 %} {% for job in jobsWithError %} {% endfor %} {% endif %} {% for job in jobPager %} {% else %} {% endfor %}
ID Command State Created At Runtime Queue
{{ job.id }} {{ macros.command(job) }} {{ macros.state(job) }} {{ macros.ago(job.createdAt) }} {{ macros.runtime(job) }} {{ macros.queue(job) }}
{{ job.id }} {{ macros.command(job) }} {{ macros.state(job) }} {{ macros.ago(job.createdAt) }} {{ macros.runtime(job) }} {{ macros.queue(job) }}
There are no jobs.
{% if jobPager.haveToPaginate %} {{ jobPagerView.render(jobPager, jobPagerGenerator)|raw }} {% endif %} {% endblock %}