I have a repeating group of "Features", like this
I'd like to be able to make an In Context Editing popup to edit only this single feature.
My template's code is like this
<#import "/templates/system/common/cstudio-support.ftl" as studio/>
<div class="container about_content center p-b-3 wow fadeInUp" data-wow-duration="700ms" <@studio.componentAttr path=contentModel.storeUrl /> >
<div class="row">
<#list contentModel.features.item as feature>
<div class="col-md-4" <@studio.iceAttr iceGroup="feature" path=contentModel.storeUrl label="Feature" /> >
<div class="single_abt single_about m-y-3">
<i class="fa">
<img src="${feature.logo}" />
</i>
<h3>${feature.title}</h3>
<p>${feature.description!}</p>
</div>
</div>
</#list>
</div>
</div>