{% extends "main.html" %}
{% load filters %}
{% block title %}Job{% endblock %}
{% block breadcrumbs %}
{% endblock %}
{% block content %}
Job Details
{{ job.jobid }}
| Job ID: | {{ job.jobid }} |
{% if user.is_authenticated %}
| User: | {{ job.account.person }} |
{% endif %}
| Project: | {{ job.project.pid }} |
| Machine: | {{ job.machine }} |
| Job start time: | {{ job.start }} |
| Date finished: | {{ job.date }} |
| Queue: | {{ job.queue }} |
| CPU Usage: | {{ job.cpu_usage }} |
| Memory Used: | {{ job.mem|fileformat }} |
| Virtual Memory Used: | {{ job.vmem|fileformat }} |
| Estimated Wall time: | {{ job.est_wall_time }}s (~{{ job.est_wall_time|timeformat }}) |
| Actual Wall time: | {{ job.act_wall_time }}s (~{{ job.act_wall_time|timeformat }}) |
| Cores: | {{ job.cores }} |
| Exit Status: | {{ job.exit_status }} |
| Software Used: | {% for s in job.software.all %}{{ s }}, {% endfor %} |
{% endblock %}