<td><?php echo $experiment->userConfigurationData->computationalResourceScheduling->queueName; ?> </td> </tr> <tr> <td><strong>Inputs</strong></td> <td><?php ExperimentUtilities::list_input_files($experiment); ?> </td> </tr> <tr> <td><strong>Outputs</strong></td> <td><?php ExperimentUtilities::list_output_files($experiment, $expVal["experimentStatusString"]); ?> </td> </tr> @if( $expVal["experimentStatusString"] == "FAILED") <tr> <td><strong>Errors</strong></td> <td> @foreach( (array)$experiment->errors as $error) {{ $error->actualErrorMessage }} @endforeach </td> </tr> @endif </table>
<td><?php echo $experiment->userConfigurationData->computationalResourceScheduling->queueName; ?> </td> </tr> <tr> <td><strong>Inputs</strong></td> <td><?php ExperimentUtilities::list_input_files($experiment->experimentInputs); ?> </td> </tr> <tr> <td><strong>Outputs</strong></td> <td><?php ExperimentUtilities::list_output_files($experiment->experimentOutputs, $experiment->experimentStatus->state, false); ?> </td> </tr> <!-- an experiment is editable only when it has not failed. otherwise, show errors. --> @if( $expVal["editable"] == false) <tr> <td><strong>Errors</strong></td> <td> @if( $experiment->errors != null) @foreach( (array)$experiment->errors as $error) {{ $error->actualErrorMessage }} @endforeach @endif </td> </tr>