Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_casanatics
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
John Aidan Vincent M. Ng
midterm_casanatics
Commits
f38b8c23
Commit
f38b8c23
authored
Mar 04, 2023
by
justin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleaned up models, fixed import of WidgetUser
parent
3f388343
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
25 deletions
+11
-25
models.py
widget_casanatics/announcement_board/models.py
+11
-25
No files found.
widget_casanatics/announcement_board/models.py
View file @
f38b8c23
from
django.db
import
models
# from dashboard import models as dashboard_models
from
dashboard.models
import
WidgetUser
# Create your models here.
# announcement model
class
Announcement
(
models
.
Model
):
# title of announcement (short description of subject)
title
=
models
.
CharField
(
max_length
=
50
)
# body of announcement (longer text w/ message)
body
=
models
.
CharField
(
max_length
=
500
)
# user who created announcement
author
=
models
.
CharField
(
max_length
=
100
)
# tentative code, if they want us to use widget user from dashboard
# author = models.ForeignKey(dashboard_models.WidgetUser, on_delete = models.CASCADE)
# publication date and time
pub_datetime
=
models
.
DateTimeField
(
"Date and Time Published"
)
body
=
models
.
CharField
(
max_length
=
500
)
author
=
models
.
ForeignKey
(
WidgetUser
,
on_delete
=
models
.
CASCADE
)
pub_datetime
=
models
.
DateTimeField
(
"Date and Time Published"
,
auto_now_add
=
True
,
)
def
__str__
(
self
):
return
self
.
title
class
Reaction
(
models
.
Model
):
# name of reaction
name
=
models
.
CharField
(
max_length
=
50
)
# number of reactions on that announcement
tally
=
models
.
IntegerField
(
default
=
0
)
class
Reaction
(
models
.
Model
):
# announcement reaction is associated with
name
=
models
.
CharField
(
max_length
=
50
)
tally
=
models
.
IntegerField
(
default
=
0
)
announcement
=
models
.
ForeignKey
(
Announcement
,
on_delete
=
models
.
CASCADE
)
def
__str__
(
self
):
return
self
.
name
\ No newline at end of file
return
self
.
name
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