# 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&#x26;token=f145e5d7-e655-4269-8749-04669d1a40c4" alt=""><figcaption></figcaption></figure>

###
