Frappe Builder dynamic data for table

Hello Guys,
I’m trying to fetch data for table. How to achieve this in frappe builder?

<table>
    <thead>
        <tr>
            <th>S.No</th>
            <th>ID</th>
            <th>Project</th>
            <th>Status</th>
            <th>Progress</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>1</td>
            <td>PROJ0001</td>
            <td>Static Website</td>
            <td>InProgress</td>
            <td>95%</td>
        </tr>
    </tbody>
</table>

@crazy_explorer you can use Jinja!

check this out!

1 Like