File size: 431 Bytes
efb524b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% extends 'base_u.html' %}

{% block content %}


<h3>
	
{{msg}}
	
	<h2>
	View Posts
</h2>
</h3>
<center>
				<table id="tab" width="70%">
<tr>
	<th width="10%">Sno<th>Reddit Post

				{% for d in data %}
<tr><td>{{forloop.counter}}<td>{{d.tweet}}</tr>
				{% endfor %}
</table><br>
<form method="get" action="/sentiresults/">
	<input type="submit" value="Sentiment Analysis">
</form>



{% endblock %}