Вставка таблицы Html в MySQL - DJANGO

у меня есть HTML таблица как эта : (много магазинов, которые я ввел сам)

    <form method="post" ,action="#">
        {% csrf_token %}
        <table class="table" dir="rtl">
            <thead>
            <tr>
                <th scope="col">store name</th>
                <th scope="col">Address</th>
                <th scope="col">phone-number</th>
                <th scope="col">Opening hours</th>
                <th scope="col">Navigate</th>
            </tr>
            </thead>
            <tr>
                <th scope="row">food store </th>
                <td>dsdadad</td>
                <td>03-6040242</td>
                <td>Monday to Saturday, 14:30-18:00</td>
                <td><a href="</a></td>
            </tr>
.
.
.
.
.
and a lot more rows

Как я могу вставить эту таблицу в базу данных MySQL?

Вернуться на верх