@foreach (var g in moduleData.GetPropertyModuleGroups(catalogSettings))
{
@g.Value
foreach (var p in propertyDataList.GetPropertyFilterList(g.Key))
{
@FilterCheckBox(p.Key, p.Value, "#rocket-blog", sessionParams.Info.GetXmlPropertyBool("r/" + p.Key))
}
}
@FilterJsApiCall(moduleData.SystemKey, sessionParams)
```
Create property group checkbox in module settings. "ThemeSettings.cshtml" to select which property groups should be included on the website view.
```
@FilterGroupCheckBox(groupId, groupName)
```
Example:
```