show.html.haml revision e0ae31a48b304a53c4280b5b3b50a6dfba6d448a
= repository_nav ontology.repository, :ontologies
= ontology_nav ontology, :theorems
%h3
= t('proof_attempts.show.head')
= link_to resource.theorem, locid_for(resource.theorem, :proof_attempts)
= render partial: 'theorems/proof_status', locals: {proof_status: resource.proof_status}
= render partial: '/shared/state', locals: {resource: resource}
= render partial: 'configuration', locals: {configuration: resource.proof_attempt_configuration}
- if resource.state == 'done'
%h4= t('proof_attempts.show.time_taken')
= t('proof_attempts.show.seconds')
%h4= t('proof_attempts.show.used_axioms')
- else
= render partial: 'sentences_list', locals: {sentences: resource.used_axioms}
%h4= t('proof_attempts.show.used_theorems')
- else
= render partial: 'sentences_list', locals: {sentences: resource.used_theorems}
%h4= t('proof_attempts.show.generated_axioms')
- else
- resource.generated_axioms.each do |axiom|
%li= axiom
%h4= t('proof_attempts.show.prover')
%h4= t('proof_attempts.show.tactic_script')
%pre= resource.tactic_script
%h4= t('proof_attempts.show.prover_output')
= link_to t('proof_attempts.show.prover_output'), locid_for(resource.prover_output)
- else