Fixed deep dive.

This commit is contained in:
2025-07-25 23:27:16 +02:00
parent 56e0965a5f
commit 8448ff1897

View File

@@ -1,13 +1,15 @@
{% extends "base.html" %}
{% extends "dashboard_base.html" %}
{% block title %}Deep Dive: {{ symbol }}{% endblock %}
{% block content %}
<h1>Deep Dive Analysis for: <strong>{{ symbol }}</strong></h1>
<p>Showing posts that mention {{ symbol }}, sorted by most recent.</p>
<!-- We wrap the content in the .image-container class to get the same beautiful styling -->
<div class="image-container">
<h1>Deep Dive Analysis for: <strong>{{ symbol }}</strong></h1>
<p style="text-align: left; color: #a0aec0;">Showing posts that mention {{ symbol }}, sorted by most recent.</p>
{% for post in posts %}
<div class="post-card">
{% for post in posts %}
<div class="post-card">
<h3><a href="{{ post.post_url }}" target="_blank">{{ post.title }}</a></h3>
<div class="post-meta">
<span>r/{{ post.subreddit_name }}</span> |
@@ -22,8 +24,9 @@
{% endif %}
</span>
</div>
</div>
{% else %}
<p>No analyzed posts found for this ticker. Run the 'rstat' scraper to gather data.</p>
{% endfor %}
</div>
{% else %}
<p>No analyzed posts found for this ticker. Run the 'rstat' scraper to gather data.</p>
{% endfor %}
{% endblock %}