|
|
@@ -1,6 +1,31 @@
|
|
|
<!DOCTYPE html>
|
|
|
<html>
|
|
|
<body>
|
|
|
- {% include 'hackathon/base.html' %}
|
|
|
- <h1 class="text-center"> {{ title }}</h1>
|
|
|
+ {% include 'hackathon/base.html' %}
|
|
|
+ <h1 class="text-center"> {{ title }}</h1>
|
|
|
+ <div class="col-lg-12">
|
|
|
+ <div class="table-responsive">
|
|
|
+ <table class="table table-bordered table-hover table-striped tablesorter">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th class="header"> Who <i class="icon-sort"></i></th>
|
|
|
+ <th class="header"> Tweet <i class="icon-sort"></i></th>
|
|
|
+ <th class="header"> Retweets <i class="icon-sort"></i></th>
|
|
|
+ <th class="header"> Created <i class="icon-sort"></i></th>
|
|
|
+
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ {% for item in content %}
|
|
|
+ <tr>
|
|
|
+ <td>{{ item.user.screen_name }}</td>
|
|
|
+ <td>{{ item.text }}</td>
|
|
|
+ <td>{{ item.retweet_count}}</td>
|
|
|
+ <td>{{ item.created_at}}</td>
|
|
|
+ {% endfor %}
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
</html>
|