twitter.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. {% include 'hackathon/base.html' %}
  5. <h1 class="text-center"> {{ title }}</h1>
  6. </div>
  7. <div class="col-lg-12">
  8. <div class="table-responsive">
  9. <table class="table table-bordered table-hover table-striped tablesorter">
  10. <thead>
  11. <tr>
  12. <th class="header"> Name <i class="icon-sort"></i></th>
  13. <th class="header"> Woeid <i class="icon-sort"></i></th>
  14. <th class="header"> Place type <i class="icon-sort"></i></th>
  15. <th class="header"> Country <i class="icon-sort"></i></th>
  16. <th class="header"> Country Code <i class="icon-sort"></i></th>
  17. <th class="header"> ParentID <i class="icon-sort"></i></th>
  18. <th class="header"> Neighbor <i class="icon-sort"></i></th>
  19. </tr>
  20. </thead>
  21. <tbody>
  22. {% for item in value %}
  23. <tr>
  24. <td>{{ item.name }}</td>
  25. <td>{{ item.woeid }}</td>
  26. <td>{{ item.placeType.name}}</td>
  27. <td>{{ item.country}}</td>
  28. <td>{{ item.countryCode}}</td>
  29. <td>{{ item.parentid}}</td>
  30. {% if item.neighbor %}
  31. <td>
  32. {% for v in item.neighbor.places.place %}
  33. {{ v.name }},
  34. {% endfor %}
  35. </td>
  36. {% else %}
  37. <td>No available Data.</td>
  38. {% endif %}
  39. {% endfor %}
  40. </tbody>
  41. </table>
  42. </div>
  43. </div>
  44. </html>