twitter_tweet.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. {% include 'hackathon/base.html' %}
  5. <h1 class="text-center"> {{ title }}</h1>
  6. <br>
  7. <div class="container text-center">
  8. <form class="form-inline" method='get' action="/hackathon/twitterTweets/">
  9. <div class="form-group">
  10. <input type="text" name="tweets" class="form-control" placeholder="Input tweet, e.g: mayfield">
  11. </div>
  12. <button type="submit" class="btn btn-default">Search</button>
  13. </form>
  14. </div>
  15. <br>
  16. {% if content %}
  17. <div class="col-lg-12">
  18. <div class="table-responsive">
  19. <table class="table table-bordered table-hover table-striped tablesorter">
  20. <thead>
  21. <tr>
  22. <th class="header"> Who <i class="icon-sort"></i></th>
  23. <th class="header"> Tweet <i class="icon-sort"></i></th>
  24. <th class="header"> Retweets <i class="icon-sort"></i></th>
  25. <th class="header"> Created <i class="icon-sort"></i></th>
  26. </tr>
  27. </thead>
  28. <tbody>
  29. {% for item in content %}
  30. <tr>
  31. <td>{{ item.user.screen_name }}</td>
  32. <td>{{ item.text }}</td>
  33. <td>{{ item.retweet_count}}</td>
  34. <td>{{ item.created_at}}</td>
  35. {% endfor %}
  36. </tbody>
  37. </table>
  38. </div>
  39. </div>
  40. {% endif %}
  41. </body>
  42. </html>