0

私のhandlebars電子メールHTMLテンプレートには、次の表があります。

<div class="table">
        <table id="carTable">
            <tbody>
            <tr>
                <th>Car Number</th>
                <th>owner</th>
            </tr>
            <!-- {{#each car}} -->
            <tr>
                <td>{{carNumber}}</td>
                <td>{{owner}}</td>
            </tr>
            <!--{{/each}} -->
            </tbody>
        </table>
    </div>

の値{{owner}}がたとえば「foo」の場合、テキストは赤になり、値が「bar」の場合は青などになる可能性はありますか?

4

1 に答える 1