Fixed deep dive.

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

View File

@@ -1,10 +1,12 @@
{% extends "base.html" %}
{% extends "dashboard_base.html" %}
{% block title %}Deep Dive: {{ symbol }}{% endblock %}
{% block content %}
<!-- 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>Showing posts that mention {{ symbol }}, sorted by most recent.</p>
<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">
@@ -26,4 +28,5 @@
{% else %}
<p>No analyzed posts found for this ticker. Run the 'rstat' scraper to gather data.</p>
{% endfor %}
</div>
{% endblock %}