Query info from toggle in pages section

Is it possible to display the text of a toggle as info in a pages section? My toggle looks like this:

toggle:
  label: "Status: aktiv oder archiviert"
  type: toggle
  default: "aktiv"
  text: 
    - "archiviert"
    - "aktiv"

In the pages section I use:

info: "Status: {{ page.toggle }}"

But this shows now “true” – how can I display “aktiv” / “archiviert” ?

Thanks a lot for any tips !

Since you cannot use if statements in query language, you need a custom page model method, or custom page or field method that returns the desired string depending on whether the toggle is true or false.