Skip to content

Commit

Permalink
fix: source
Browse files Browse the repository at this point in the history
  • Loading branch information
Gowtham1729 committed Dec 13, 2023
1 parent eac34d2 commit 7221c84
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion applications/backend/django_server/news/templates/news.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ <h1>{{symbol}} on {{date}}</h1>
{% for item in news %}
<h2>{{item.headline}}</h2>
<img src="{{item.img_src_url}}"/>
<p>{{item.summary}} <a href="{{item.src_url}}">{{more}}</a></p>
<p>{{item.summary}}</p>
<p>Source: <a href="{{item.src_url}}" target="_blank">{{item.src}}</a></p>
<p>Sentiment: {{item.sentiment}}</p>
<p>Need Attention: {{item.need_attention}}</p>
<p>Why ? {{item.reason}}</p>
Expand Down

0 comments on commit 7221c84

Please sign in to comment.