[SOLVED] How I Can Data Table Comment Row?

I want to add a comment line after every data I want

I want to do like this

i can’t do with this code

  {{#each names}}
                        <table>
                            {{#if this}}
                                <thead>
                                    <tr>
                                        <th class="label-cell">Ürün Türü</th>
                                        <th class="numeric-cell">Fiyatı</th>
                                        <th class="numeric-cell">Adedi</th>
                                        <th class="numeric-cell">Düzenle</th>

                                    </tr>
                                </thead>
                            {{/if}}
                            <tbody>
                                <tr class="badge-list">
                                    <td class="label-cell badge-name" data-product="{{this.id}}">{{this.name}}</td>
                                    <td class="numeric-cell badge-price">{{this.price}}</td>
                                    <td class="numeric-cell badge-bag-count">{{this.count}}</td>
                                    <td class="numeric-cell">
                                        <div class="row">
                                            <div class="col" data-badge="{{this.id}}">
                                                <i @click="badgeBagRemove" class="icon f7-icons no-padding link text-color-red size-22">delete_round</i>
                                                <i @click="badgeBagAdd" class="icon f7-icons no-padding link text-color-green size-22 badge-bag-add">add_round</i>
                                            </div>
                                        </div>
                                    </td>
                                </tr>
                            </tbody>

                        </table>
                        {{#if this.text}}
                            <div class="block-text">
                                <span><i data-brackets-id="64" class="icon material-icons">info</i> {{this.text}}</span>
                            </div>
                        {{/if}}
                    {{/each}}

I solved the problem this way. is there any better?

  <table>
                    <thead>
                        <tr>
                            <th class="label-cell">Ürün Türü</th>
                            <th class="numeric-cell">Fiyatı</th>
                            <th class="numeric-cell">Adedi</th>
                            <th class="numeric-cell">Düzenle</th>

                        </tr>
                    </thead>
                </table>

                {{#each names}}
                    <table>
                        <tbody>
                            <tr class="badge-list">
                                <td class="label-cell badge-name" data-product="{{this.id}}">{{this.name}}</td>
                                <td class="numeric-cell badge-price">{{this.price}}</td>
                                <td class="numeric-cell badge-bag-count">{{this.count}}</td>
                                <td class="numeric-cell">
                                    <div class="row">
                                        <div class="col" data-badge="{{this.id}}">
                                            <i @click="badgeBagRemove" class="icon f7-icons no-padding link text-color-red size-22">delete_round</i>
                                            <i @click="badgeBagAdd" class="icon f7-icons no-padding link text-color-green size-22 badge-bag-add">add_round</i>
                                        </div>
                                    </div>
                                </td>
                            </tr>
                        </tbody>

                    </table>
                    {{#if this.text}}
                        <div class="block-text">
                            <span><i data-brackets-id="64" class="icon material-icons">info</i> {{this.text}}</span>
                        </div>
                    {{/if}}
                {{/each}}