Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_CtrlF
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
0
Merge Requests
0
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
Fritzie Dianne Del Pilar
midterm_CtrlF
Commits
2714d80c
Commit
2714d80c
authored
Mar 05, 2023
by
Lance Cedric Tan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Created forum app
parent
7b9a1e88
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
60 deletions
+2
-60
admin.py
widget_CtrlF/forum/admin.py
+1
-22
models.py
widget_CtrlF/forum/models.py
+1
-18
views.py
widget_CtrlF/forum/views.py
+0
-20
No files found.
widget_CtrlF/forum/admin.py
View file @
2714d80c
from
django.contrib
import
admin
from
.models
import
ForumPost
,
Reply
class
ForumPostAdmin
(
admin
.
ModelAdmin
):
model
=
ForumPost
search_fields
=
(
'title'
,
'body'
,
'author'
,)
list_display
=
(
'title'
,
'body'
,
'author'
,
'pub_datetime'
,)
list_filter
=
(
'title'
,
'author'
,
'pub_datetime'
,)
class
ReplyAdmin
(
admin
.
ModelAdmin
):
model
=
Reply
search_fields
=
(
'body'
,
'author'
,)
list_display
=
(
'body'
,
'author'
,
'pub_datetime'
,)
list_filter
=
(
'author'
,
'pub_datetime'
)
# Register your models here.
admin
.
site
.
register
(
ForumPost
,
ForumPostAdmin
)
admin
.
site
.
register
(
Reply
,
ReplyAdmin
)
\ No newline at end of file
widget_CtrlF/forum/models.py
View file @
2714d80c
from
django.db
import
models
from
dashboard.models
import
WidgetUser
class
ForumPost
(
models
.
Model
):
title
=
models
.
CharField
(
max_length
=
100
)
body
=
models
.
TextField
()
author
=
models
.
ForeignKey
(
WidgetUser
,
on_delete
=
models
.
CASCADE
)
pub_datetime
=
models
.
DateTimeField
()
def
__str__
(
self
):
return
self
.
title
class
Reply
(
models
.
Model
):
post
=
models
.
ForeignKey
(
ForumPost
,
on_delete
=
models
.
CASCADE
)
body
=
models
.
TextField
()
author
=
models
.
ForeignKey
(
WidgetUser
,
on_delete
=
models
.
CASCADE
)
pub_datetime
=
models
.
DateTimeField
()
# Create your models here.
widget_CtrlF/forum/views.py
View file @
2714d80c
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
from
.models
import
ForumPost
,
Reply
# Create your views here.
def
index
(
request
):
page_content
=
"<p>Widget's Forum</> Forum Posts:<br>"
for
post
in
ForumPost
.
objects
.
all
():
page_content
+=
'{} by {} {} posted {}:<br>{}<br>'
.
format
(
post
.
title
,
post
.
author
.
first_name
,
post
.
author
.
last_name
,
post
.
pub_datetime
.
strftime
(
'
%
m/
%
d/
%
Y,
%
H:
%
M
%
p'
),
post
.
body
)
for
reply
in
Reply
.
objects
.
all
():
if
reply
.
post
==
post
.
title
:
page_content
+=
'Reply by {} {} posted {}:<br>{}<br>'
.
format
(
reply
.
author
.
first_name
,
reply
.
author
.
last_name
,
reply
.
pub_datetime
.
strftime
(
'
%
m/
%
d/
%
Y,
%
H:
%
M
%
p'
),
reply
.
body
)
return
HttpResponse
(
page_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