Commit be60c5ae authored by Filip Šenk's avatar Filip Šenk
Browse files

Refined descriptions + faq

parent bbaff4b9
Loading
Loading
Loading
Loading
+12 −10
Original line number Diff line number Diff line
@@ -2,24 +2,26 @@ import type { Checklist } from '../../types'

export const CONCLUSION_CONDITIONS: Checklist = [
  {
    name: 'Instructors Team',
    name: 'Brief Instructors',
    description:
      'Ensure instructors are briefed on their roles and the scenario.',
      'Share the scenario, explain evaluation criteria, and walk through instructor notes.',
  },
  {
    name: 'Platform Setup',
    description: 'Set up the platform and add participants.',
    name: 'Create Exercise Instance',
    description: 'Set up the exercise in platform and add trainee accounts.',
  },
  {
    name: 'Simplify Onboarding',
    description: 'Run the tutorial to introduce trainees to IXP.',
    name: 'Plan Trainee Onboarding',
    description:
      'Decide if trainees need a platform tutorial before the exercise starts.',
  },
  {
    name: 'Communication Plan',
    description: 'Define what trainees need to know before and after.',
    name: 'Prepare Trainee Communication',
    description: 'Draft pre-exercise instructions and post-exercise follow-up.',
  },
  {
    name: 'Organizational Aspects',
    description: 'Check venue, logistics, and supplementary materials.',
    name: 'Check Logistics',
    description:
      'Confirm venue, equipment, internet connection, and any printed materials.',
  },
]
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ export const EXERCISE_INFORMATION_FORM: Form = {
    optional: true,
  },
  goals: {
    label: 'Exercise goals',
    label: 'Exercise needs',
    tooltip: '',
    optional: true,
  },
+0 −16
Original line number Diff line number Diff line
import type { Checklist } from '../../types'

export const INTRODUCTION_CONDITIONS: Checklist = [
  { name: 'The Need', description: 'Why do we want to have this exercise?' },
  { name: 'The Objectives', description: 'What are its main goals?' },
  { name: 'Target Audience', description: 'Who are the trainees?' },
  {
    name: 'Type of Exercise',
    description:
      'Is it a process-technical or strategic decision-making exercise?',
  },
  {
    name: 'Organizational Aspects',
    description: 'Consider all deadlines, logistics, and other details.',
  },
]
+64 −0
Original line number Diff line number Diff line
import type { Checklist } from '../../types'

export const INTRODUCTION_CONDITIONS: Checklist = [
  {
    name: 'Why does this exercise exist?',
    description: (
      <a
        href='https://docs.inject.muni.cz/INJECT_process/understand/needs'
        target='_blank'
        rel='noreferrer'
      >
        Find out the need
      </a>
    ),
  },
  {
    name: 'Who are your trainees?',
    description: (
      <a
        href='https://docs.inject.muni.cz/INJECT_process/understand/trainees'
        target='_blank'
        rel='noreferrer'
      >
        Understand trainees
      </a>
    ),
  },
  {
    name: 'How does the platform connect actions to outcomes?',
    description: (
      <a
        href='https://docs.inject.muni.cz/INJECT_process/specify/logic'
        target='_blank'
        rel='noreferrer'
      >
        Milestone logic
      </a>
    ),
  },
  {
    name: 'What can the platform do?',
    description: (
      <a
        href='https://docs.inject.muni.cz/INJECT_process/specify/features'
        target='_blank'
        rel='noreferrer'
      >
        Platform features
      </a>
    ),
  },
  {
    name: 'What should trainees learn and do?',
    description: (
      <a
        href='https://docs.inject.muni.cz/INJECT_process/specify/specification'
        target='_blank'
        rel='noreferrer'
      >
        Specify objectives, activities, and injects
      </a>
    ),
  },
]
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ const Checklist: FC<ChecklistProps> = ({
            onInputChange(conditionChecked.map((v, i_i) => (i == i_i ? !v : v)))
          }}
        >
          {condition.name} -{' '}
          {condition.name} {condition.description && '- '}
          <span className={Classes.TEXT_MUTED}>{condition.description}</span>
        </CheckboxCard>
      ))}
Loading