Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_huli
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
Izaac Daniel B. Muncal
midterm_huli
Commits
d0f11a76
Commit
d0f11a76
authored
May 13, 2023
by
Anchilla Vera Marie Silang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adjusted Views
parent
61d7bd65
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
views.py
widget_huli/forum/views.py
+4
-4
No files found.
widget_huli/forum/views.py
View file @
d0f11a76
...
...
@@ -10,15 +10,15 @@ from .forms import ForumPostForm
def
ForumViews
(
request
):
forum
=
ForumPost
.
objects
.
all
()
context
=
{
'forum'
:
forum
}
return
render
(
request
,
'forum.html'
,
context
)
return
render
(
request
,
'forum
/forum
.html'
,
context
)
class
ForumPostDetails
(
DetailView
):
template_name
=
"forumpost-details.html"
template_name
=
"forum
/forum
post-details.html"
model
=
ForumPost
class
ForumPostNew
(
CreateView
):
form_class
=
ForumPostForm
template_name
=
"forumpost-add.html"
template_name
=
"forum
/forum
post-add.html"
def
get_success
(
self
):
return
reverse
(
'forum:forumpostnew'
,
kwargs
=
{
'pk'
:
self
.
object
.
id
},
...
...
@@ -26,7 +26,7 @@ class ForumPostNew(CreateView):
class
ForumPostEdit
(
UpdateView
):
form_class
=
ForumPostForm
template_name
=
"forumpost-edit.html"
template_name
=
"forum
/forum
post-edit.html"
queryset
=
ForumPost
.
objects
.
all
()
def
get_success_url
(
self
):
...
...
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