$def with (jobs_running, jobs_waiting, from_timestamp) $# $# This file is part of INGInious. See the LICENSE and the COPYRIGHTS files for $# more information about the licensing of this file. $# $var title: $:_("Job queue") $# Start content $def NavbarF(): $var Navbar: $:NavbarF()
$:_("This page shows a snapshot of the job queue.")
$:_("Type") | $:_("Local client") | $:_("Agent name") | $:_("Name") | $:_("Launcher name") | $:_("Started at") | $:_("Timeout at") |
---|---|---|---|---|---|---|
Task | $if is_current_client_job: $:_("Yes") $else: $:_("No") | $agent_name | $info | $launcher | $from_timestamp(started_at).strftime("%d/%m/%Y %H:%M:%S") | $from_timestamp(max_end).strftime("%d/%m/%Y %H:%M:%S") |
$:_("There are no jobs running")
$:_("Type") | $:_("Local") | $:_("Name") | $:_("Launcher name") | $:_("Maximum runtime in seconds") |
---|---|---|---|---|
Task | $if is_current_client_job: $:_("Yes") $else: $:_("No") | $info | $launcher | $max_end |
$:_("There are no jobs waiting in queue")