Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. <div class="row">
  2.  
  3. {% for row,user_image in rows %}
  4.  
  5. <div class="col-md-3">
  6. <div class="row">
  7. <div class="panel panel-primary">
  8. <h4 align="center">Id: {{row["Id"]}}</h4>
  9. <h4 align="center">Nombre:{{row["Nombre"]}}</h4>
  10. <h4 align="center">Peso: {{row["Peso"]}}</h4>
  11. <h4 align="center">Dosis: {{ row["Dosis"]}}</h4>
  12. <h4 align="center">UltimaFecha: {{row['Ultimafecha']}}</h4>
  13. <h4 align="center">Vacunas: {{ row["Vacunas"]}}</h4>
  14. <!-- <div align="center "> -->
  15. <div align="center">
  16. <img src="{{ user_image }}" alt="User Image" width="100%" height="100%">
  17. </div>
  18.  
  19. <!--</div> -->
  20.  
  21. </div>
  22. </div>
  23. </div>
  24. {% endfor %}
  25. </div>
  26. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement