<template>
  <table class="table table-info rounded">
    <tbody>
      <tr>
        <th>Modul</th>
        <td>{{ exam.module_reference }}</td>
      </tr>
      <tr v-if="!exam.pass_only">
        <th>Pass score</th>
        <td>{{ exam.pass_score }}</td>
      </tr>
      <tr v-else>
        <th>Pass only!</th>
      </tr>
      <tr>
        <th>Total score</th>
        <td>{{ exam.total_score }}</td>
      </tr>
    </tbody>
  </table>
</template>


<script>
  export default {
    name: 'exam-information',
    props: ['exam']
  }
</script>