Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_Francoconuts
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Chester Tan
widget_Francoconuts
Commits
85e5e6af
Commit
85e5e6af
authored
May 23, 2022
by
Mario Franco C. Deuna
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extended detail view with the base.html file.
parent
fa77bad8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
21 deletions
+24
-21
post_detail.html
widget_Francoconuts/forum/templates/Forum/post_detail.html
+24
-21
No files found.
widget_Francoconuts/forum/templates/Forum/post_detail.html
View file @
85e5e6af
<h1
style=
"background-color:DodgerBlue;"
>
{% extends 'base.html' %}
{% block content %}
<h1
style=
"background-color:DodgerBlue;"
>
{{post.post_title}}
{{post.post_title}}
</h1>
</h1>
<h4
style=
"background-color:Aquamarine;"
>
<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}}
{{post.author.first_name}} {{post.author.last_name}}, {{post.pub_date.day}}/{{post.pub_date.month}}/{{post.pub_date.year}}
</h4>
</h4>
<h3
style=
"background-color:Aquamarine;"
>
<h3
style=
"background-color:Aquamarine;"
>
{{post.post_body}}
{{post.post_body}}
</h3>
</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>
<li>
<u>
<u>
Reply by {{reply.author.first_name}} {{reply.author.last_name}} dated {{reply.pub_date.day}}/{{reply.pub_date.month}}/{{reply.pub_date.year}}:
Reply by {{reply.author.first_name}} {{reply.author.last_name}} dated {{reply.pub_date.day}}/{{reply.pub_date.month}}/{{reply.pub_date.year}}:
</u>
</u>
<br>
<br>
{{reply.reply_body}}
{{reply.reply_body}}
</li>
</li>
<br>
<br>
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
{% load static %}
{% load static %}
<marquee
behavior=
"alternate"
scrollamount=
"200"
><img
src=
"{% static 'forum/hypers.jpg' %}"
alt=
"image"
>
<marquee
behavior=
"alternate"
scrollamount=
"200"
><img
src=
"{% static 'forum/hypers.jpg' %}"
alt=
"image"
>
</ul>
</ul>
{% endblock content %}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment