{#if $initq.fetching} {:else if $initq.error} {$initq.error.message} {/if} { let filters = [...detail.filters, { user: { eq: user.username } }] $stats.variables = { filter: filters } $stats.context.pause = false $stats.reexecute() jobList.update(filters) }} /> jobList.update()} />
{#if $stats.error} {$stats.error.message} {:else if !$stats.data} {:else} {#if user.name} {/if} {#if user.email} {/if}
Username {scrambleNames ? scramble(user.username) : user.username}
Name {scrambleNames ? scramble(user.name) : user.name}
Email {user.email}
Total Jobs {$stats.data.jobsStatistics[0].totalJobs}
Short Jobs {$stats.data.jobsStatistics[0].shortJobs}
Total Walltime {$stats.data.jobsStatistics[0].totalWalltime}
Total Core Hours {$stats.data.jobsStatistics[0].totalCoreHours}
Duration Distribution {#key $stats.data.jobsStatistics[0].histDuration} {/key}
Number of Nodes Distribution {#key $stats.data.jobsStatistics[0].histNumNodes} {/key}
{/if}