Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_django unchained
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jose Emmanuel B. Laurel
widget_django unchained
Commits
3e8f264f
Commit
3e8f264f
authored
Apr 06, 2022
by
Ray Rafael Abenido
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Style: reformatted the design of 'forum' page.
parent
76619d42
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
3 additions
and
3 deletions
+3
-3
models.cpython-39.pyc
...unchained/announcements/__pycache__/models.cpython-39.pyc
+0
-0
0015_announcement_author.cpython-39.pyc
...tions/__pycache__/0015_announcement_author.cpython-39.pyc
+0
-0
0016_alter_announcement_author.cpython-39.pyc
...__pycache__/0016_alter_announcement_author.cpython-39.pyc
+0
-0
db.sqlite3
widget_django_unchained/db.sqlite3
+0
-0
post_listing.html
widget_django_unchained/forum/templates/post_listing.html
+2
-2
replychain_listing.html
..._django_unchained/forum/templates/replychain_listing.html
+1
-1
No files found.
widget_django_unchained/announcements/__pycache__/models.cpython-39.pyc
View file @
3e8f264f
No preview for this file type
widget_django_unchained/announcements/migrations/__pycache__/0015_announcement_author.cpython-39.pyc
View file @
3e8f264f
No preview for this file type
widget_django_unchained/announcements/migrations/__pycache__/0016_alter_announcement_author.cpython-39.pyc
View file @
3e8f264f
No preview for this file type
widget_django_unchained/db.sqlite3
View file @
3e8f264f
No preview for this file type
widget_django_unchained/forum/templates/post_listing.html
View file @
3e8f264f
...
@@ -2,13 +2,13 @@
...
@@ -2,13 +2,13 @@
<p>
<p>
{% for post in posts %}
{% for post in posts %}
<p><b>
{{post.post_title}}
</b>
by {{post.author}} dated {{post.pub_date}}
</p>
<p><b>
{{post.post_title}}
</b>
by {{post.author}} dated {{post.pub_date}}
:
</p>
<p>
{{ post.post_body }}
</p>
<p>
{{ post.post_body }}
</p>
{% if post.reply_chain != NULL %}
{% if post.reply_chain != NULL %}
<p>
{% include "replychain_listing.html" with reply=post.reply_chain %}
</p>
<p>
{% include "replychain_listing.html" with reply=post.reply_chain %}
</p>
{% endif %}
{% endif %}
{{ value|linebreaks }}
<br>
{% endfor %}
{% endfor %}
</p>
</p>
\ No newline at end of file
widget_django_unchained/forum/templates/replychain_listing.html
View file @
3e8f264f
<p><i>
Reply by {{reply.author}} dated {{reply.pub_date}}
</i></p>
<p><i>
Reply by {{reply.author}} dated {{reply.pub_date}}
:
</i></p>
<p>
{{reply.reply_body}}
</p>
<p>
{{reply.reply_body}}
</p>
{% if reply.reply_chain != NULL %}
{% if reply.reply_chain != NULL %}
...
...
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