Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If you want to show all options, it's better to use a for loop. This will show the field label and the value, e.g. "

License Key: 123-my-license-key"
Notes: Here are some notes.
...

Code Block
{% for option in service.options %}
{option.option_label}: {option.value}
{% endfor %}

...