<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Project-X</title>
    <style>
        th,td{
        padding:3px;
        text-align: center;
        }
        th{
        background-color:black;
        color:white;
        }
    </style>
</head>
<body>
<div id="header_content">
    Project-X
</div>

<div>

<table class="table" border="1" style="margin-top: 20px;">
                    <tr>
                        <th>Recm</th>
                        <th>Country</th>
                        <th>Market	</th>
                        <th>Product_id</th>
                        <th>Product_name</th>
                    </tr>

                                        {% if d %}
                                            {% for i in d %}
                                            <tr>
                                                <td> {{i.recm}} </td>
                                                <td> {{i.country}} </td>
                                                <td> {{i.market}} </td>
                                                <td> {{i.product_id}} </td>
                                                <td> {{i.product_name}} </td>
                                            </tr>    
                                            {% endfor %}
                                        {% else %}
                                        There are no records in the system
                                        {% endif %}


</table>
</div>
<!-- <div id="footer_content">
    Pdf Page No. <pdf:pagenumber> / Total Page : <pdf:pagecount>
</div> -->
</body>
</html>