Commit 80da0443 authored by AllenSkyy's avatar AllenSkyy
parents 68782341 85e5e6af
<h1 style="background-color:DodgerBlue;">
{% extends 'base.html' %}
{% block content %}
<h1 style="background-color:DodgerBlue;">
{{post.post_title}}
</h1>
<h4 style="background-color:Aquamarine;">
{{post.author.first_name}} {{post.author.last_name}}, {{post.pub_date.day}}/{{post.pub_date.month}}/{{post.pub_date.year}}
</h4>
<h3 style="background-color:Aquamarine;">
{{post.post_body}}
</h3>
</h1>
<h4 style="background-color:Aquamarine;">
{{post.author.first_name}} {{post.author.last_name}}, {{post.pub_date.day}}/{{post.pub_date.month}}/{{post.pub_date.year}}
</h4>
<h3 style="background-color:Aquamarine;">
{{post.post_body}}
</h3>
<img src= {{post.post_imageUrl}}>
<img src= {{post.post_imageUrl}}>
<ul>
<ul>
{% for reply in reply_list %}
{% for reply in reply_list %}
{% if reply.reply_post.post_title == post.post_title %}
{% if reply.reply_post.post_title == post.post_title %}
<li>
<u>
Reply by {{reply.author.first_name}} {{reply.author.last_name}} dated {{reply.pub_date.day}}/{{reply.pub_date.month}}/{{reply.pub_date.year}}:
</u>
<li>
<u>
Reply by {{reply.author.first_name}} {{reply.author.last_name}} dated {{reply.pub_date.day}}/{{reply.pub_date.month}}/{{reply.pub_date.year}}:
</u>
<br>
{{reply.reply_body}}
</li>
{{reply.reply_body}}
</li>
<br>
<br>
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
{% load static %}
<marquee behavior="alternate" scrollamount="200"><img src="{% static 'forum/hypers.jpg' %}" alt="image">
</ul>
{% endblock content %}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment