Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_group 18
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
Rac Gerard Elizaga
widget_group 18
Commits
5caed996
Commit
5caed996
authored
Mar 22, 2022
by
Maso Crisostomo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated announcements app with models. Committed to crisostomo/announcenment
parent
a277b63d
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
30 deletions
+0
-30
admin.cpython-38.pyc
...t_group_18/announcements/__pycache__/admin.cpython-38.pyc
+0
-0
models.cpython-38.pyc
..._group_18/announcements/__pycache__/models.cpython-38.pyc
+0
-0
admin.py
widget_group_18/announcements/admin.py
+0
-3
0001_initial.py
widget_group_18/announcements/migrations/0001_initial.py
+0
-23
0001_initial.cpython-38.pyc
...ements/migrations/__pycache__/0001_initial.cpython-38.pyc
+0
-0
models.py
widget_group_18/announcements/models.py
+0
-4
No files found.
widget_group_18/announcements/__pycache__/admin.cpython-38.pyc
View file @
5caed996
No preview for this file type
widget_group_18/announcements/__pycache__/models.cpython-38.pyc
View file @
5caed996
No preview for this file type
widget_group_18/announcements/admin.py
View file @
5caed996
from
django.contrib
import
admin
# Register your models here.
from
.models
import
Announcement
admin
.
site
.
register
(
Announcement
)
\ No newline at end of file
widget_group_18/announcements/migrations/0001_initial.py
deleted
100644 → 0
View file @
a277b63d
# Generated by Django 3.2.12 on 2022-03-22 07:19
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
initial
=
True
dependencies
=
[
]
operations
=
[
migrations
.
CreateModel
(
name
=
'Announcement'
,
fields
=
[
(
'id'
,
models
.
BigAutoField
(
auto_created
=
True
,
primary_key
=
True
,
serialize
=
False
,
verbose_name
=
'ID'
)),
(
'announcement_title'
,
models
.
CharField
(
max_length
=
70
)),
(
'announcement_body'
,
models
.
CharField
(
max_length
=
1000
)),
(
'pub_date'
,
models
.
DateTimeField
(
auto_now_add
=
True
)),
],
),
]
widget_group_18/announcements/migrations/__pycache__/0001_initial.cpython-38.pyc
deleted
100644 → 0
View file @
a277b63d
File deleted
widget_group_18/announcements/models.py
View file @
5caed996
from
django.db
import
models
# Create your models here.
class
Announcement
(
models
.
Model
):
announcement_title
=
models
.
CharField
(
max_length
=
70
)
announcement_body
=
models
.
CharField
(
max_length
=
1000
)
pub_date
=
models
.
DateTimeField
(
auto_now_add
=
True
)
\ No newline at end of file
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