From 0fe1a10b21c3a4e6c76ff377497d7d01a532fe7f Mon Sep 17 00:00:00 2001 From: ScriptSmith Date: Fri, 16 Aug 2024 16:09:17 +1000 Subject: [PATCH] Job status codes as table --- .../guide/Instructions/StartInstructions.js | 86 +++++++++++++------ 1 file changed, 59 insertions(+), 27 deletions(-) diff --git a/src/components/tool/guide/Instructions/StartInstructions.js b/src/components/tool/guide/Instructions/StartInstructions.js index 923fa647..0c020e4f 100644 --- a/src/components/tool/guide/Instructions/StartInstructions.js +++ b/src/components/tool/guide/Instructions/StartInstructions.js @@ -2,10 +2,14 @@ import { Code, Flex, Kbd, - ListItem, Radio, RadioGroup, - UnorderedList, + Table, + Tbody, + Td, + Th, + Thead, + Tr, } from "@chakra-ui/react"; import { useState } from "react"; @@ -183,31 +187,59 @@ Job ID Username Queue Jobname SessID NDS TSK Memory Time S Ti 1234567.pbs username quick job-name -- 1 4 32gb 01:00 Q --`} - The job status will be shown in the S column. Possible - values are: - - - Q - Queued - - - R - Running - - - B - Array job has at least one subjob running - - - H - Held - - - S - Suspended - - - E - Exiting - - - F - Finished - - + The job status will be shown in the S column. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StatusDescription
+ Q + Queued
+ R + Running
+ B + Array job has at least one subjob running
+ H + Held
+ S + Suspended
+ E + Exiting
+ F + Finished
)}