> For the complete documentation index, see [llms.txt](https://docs.lineverge.com/automail/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.lineverge.com/automail/configurations/ui-configuration/site/panels/itemlist.md).

# Itemlist

Below is an example configuration of a panel using the **Itemlist** module:

<pre class="language-python"><code class="lang-python"><strong>{
</strong>    "width": 12,
    "full_row": True,
    "url_name": "panel_listgroup_tables",
    "content": {
        "view": module_views.ListGroup,
        "view_params": {
            "url_open_new_tab": False,
            "context_items": context_items,
        },
    },
}
<strong>        
</strong></code></pre>

We will define the **context\_items** in url\_variables.py like this:

```python
context_items = []
for context_item in [...]:    
    .....
    context_items.append(
        {
            "title":
            "listgroups":
        }
    )
```

<figure><img src="/files/r1yTVr0K2iJ1s4hmTmyQ" alt=""><figcaption></figcaption></figure>

###
