> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kiwify.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# all_courses_values

> The all_courses_values list contains all courses added to your club.

You can use `all_courses_values` to list all courses the user has access to. Each element is a <a href="/en/members-area/reference/objects/course">Course</a> object.

The all\_courses\_values list is decided on runtime, so it's not a static object. It's different for each user, based on what group they belong to, if they've classes unlocked now, etc.

## Syntax

```liquid theme={null}
{% all_courses_values.first %}
```

## Scope

It's accessible globally, in any template, section or block.

<Frame>
  ```mermaid theme={null}
  graph TD
      A[Global Context] --> B[all_courses_values]
      style A fill:#f9f9f9,stroke:#333,stroke-width:2px,color:#333,stroke-dasharray: 5 5
      style B fill:#4B96FF,stroke:#333,stroke-width:1px,color:white,font-weight:bold
      linkStyle 0 stroke:#4B96FF,stroke-width:2px
  ```
</Frame>

## Example

<Columns cols={2}>
  <CodeGroup>
    ```liquid Code theme={null}
    {% for course in all_courses_values %}
      - {{ course.name }}
    {% endfor %}
    ```

    ```json Data theme={null}
    // Just an example initial data, the data is not real
    {
      "all_courses_values": [
        {
          "name": "Cooking 101"
        },
        {
          "name": "Cooking Master"
        },
      ]
    }
    ```
  </CodeGroup>

  <CodeGroup>
    ```liquid Output theme={null}
    - Cooking 101
    - Cooking Master
    ```
  </CodeGroup>
</Columns>
