> 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="https://3317070279-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F21lWxRGfp98mDu2HVXvf%2Fuploads%2FNDICGmtpZgX4NSv8hiIj%2Fimage.png?alt=media&amp;token=f145e5d7-e655-4269-8749-04669d1a40c4" alt=""><figcaption></figcaption></figure>

###
