как перенести данные таблицы из Html в view.py (Python) - PullRequest
1 голос
/ 09 июля 2020

Я использую Django и хочу преобразовать некоторые данные в view.py. Я хотел бы знать, есть ли для этого руководство или метод. Скажем, я хочу преобразовать следующее в view.py

<table class="table table-bordered table-striped">
                  <thead>
                    <!-- Columnas de la tabla -->
                    <tr>
                      <th scope="col">Nombre huesped</th>
                      <th scope="col">Rut huesped</th>
                      <th scope="col">Telefono</th>
                      <th scope="col">N° de habitacion</th>
                      <th scope="col">Tipo de plato</th>
                      <th scope="col">borrar</th>
                      
                    </tr>
                  </thead>
                  <tbody id="filas">
                    <!-- Fila 1 de la tabla -->
                    
                  </tbody>
                </table>

1 Ответ

0 голосов
/ 09 июля 2020

Думаю, этого можно достичь, просто вернув это как HTTPResponse:

def index(request):
   return HttpResponse("""<table class="table table-bordered table-striped">
                  <thead>
                    <!-- Columnas de la tabla -->
                    <tr>
                      <th scope="col">Nombre huesped</th>
                      <th scope="col">Rut huesped</th>
                      <th scope="col">Telefono</th>
                      <th scope="col">N° de habitacion</th>
                      <th scope="col">Tipo de plato</th>
                      <th scope="col">borrar</th>
                      
                    </tr>
                  </thead>
                  <tbody id="filas">
                    <!-- Fila 1 de la tabla -->
                    
                  </tbody>
                </table>""")
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...