aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby <[email protected]>2023-01-08 14:18:25 -0500
committerBobby <[email protected]>2023-01-08 14:18:25 -0500
commitb1949abeaec29258de5478b5b38ac112c86b4cd1 (patch)
treec102fbda2c9b4705053738f223ece57021182e8d
parentec49caa3214b7fef4ddeb8d2aa759ecf36e13baa (diff)
downloadthatcomputerscientist-b1949abeaec29258de5478b5b38ac112c86b4cd1.tar.xz
thatcomputerscientist-b1949abeaec29258de5478b5b38ac112c86b4cd1.zip
Update recent activity screen
-rw-r--r--templates/blog/activity.html6
1 files changed, 2 insertions, 4 deletions
diff --git a/templates/blog/activity.html b/templates/blog/activity.html
index c78480fe..595dd920 100644
--- a/templates/blog/activity.html
+++ b/templates/blog/activity.html
@@ -31,14 +31,12 @@
{% if activity_user_profile.is_public %}
{% if activity_recent_comments %}
- <h1>Recent Comments</h1>
- <hr><br>
+ <h2>Recent Comments</h2>
<ul>
{% for comment in activity_recent_comments %}
- <li>
+ <li style="background: #1c1c1c;padding: 20px 10px 10px 10px;margin-bottom: 10px;border-radius: 8px;"
<p>On <a href="{% url 'blog:post' comment.post.slug %}#comment-{{ comment.id }}">{{ comment.post.title }}</a>:
<blockquote>{{ comment.body|safe }}</blockquote></p>
- <p>------------------------------------------------------ </p>
</li>
{% endfor %}
</ul>