section.query .page-header h1 = query.name .pull-right = link_to [:edit, query], class: 'btn btn-default btn-sm' do i.fa.fa-pencil.fa-pad-r | Edit .clearfix small= "Updated at #{l(query.updated_at, format: :short)}" p.description= query.description css: #{Rouge::Themes::Github.render(scope: '.highlight')} = raw query.query_with_highlight section.new-execution h2 Create report = form_for [query, query.executions.build], html: {class: 'form-inline', role: 'form'} do |f| .form-group.report_format = f.label :report_format = f.select :report_format, f.object.supported_formats, {}, class: 'form-control' .form-group = f.submit 'Create report', class: 'btn btn-default' section.past-executions h2 Reports table.executions.table.table-striped.table-hover thead tr th.wip   th.created_at= human(Adhoq::Execution, :created_at) th.status= human(Adhoq::Execution, :status) th.report tbody - query.executions.recent_first.each do |exec| - next if exec.report.try(:on_the_fly?) = render 'execution', query: query, exec: exec