transferred Code Ocean from original repository to GitHub
This commit is contained in:
10
app/views/execution_environments/show.html.slim
Normal file
10
app/views/execution_environments/show.html.slim
Normal file
@ -0,0 +1,10 @@
|
||||
h1
|
||||
= @execution_environment
|
||||
= render('shared/edit_button', object: @execution_environment)
|
||||
|
||||
= row(label: 'execution_environment.name', value: @execution_environment.name)
|
||||
= row(label: 'execution_environment.user', value: link_to(@execution_environment.author, @execution_environment.author))
|
||||
- [:docker_image, :exposed_ports, :permitted_execution_time, :run_command, :test_command].each do |attribute|
|
||||
= row(label: "execution_environment.#{attribute}", value: @execution_environment.send(attribute))
|
||||
= row(label: 'execution_environment.testing_framework', value: @testing_framework_adapter.try(:framework_name))
|
||||
= row(label: 'execution_environment.help', value: render_markdown(@execution_environment.help))
|
Reference in New Issue
Block a user