Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_group 25
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
Andre Matthew Dumandan
widget_group 25
Commits
3f18340f
Commit
3f18340f
authored
Apr 02, 2022
by
Rau Layug
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated calendarapp admin view
parent
fc8b56c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
admin.py
widget_group_25/calendarapp/admin.py
+5
-2
No files found.
widget_group_25/calendarapp/admin.py
View file @
3f18340f
...
...
@@ -2,14 +2,17 @@ from django.contrib import admin
from
.models
import
Event
,
Location
# Register your models here.
class
LocationAdmin
(
admin
.
ModelAdmin
):
model
=
Location
list_display
=
(
'mode'
,
'venue'
)
class
EventAdmin
(
admin
.
ModelAdmin
):
model
=
Event
list_display
=
(
'target_date'
,
'activity'
,
'estimated_hours'
,
'location'
)
list_display
=
(
'target_date'
,
'activity'
,
'estimated_hours'
,
'course'
,
'location'
)
admin
.
site
.
register
(
Location
,
LocationAdmin
)
admin
.
site
.
register
(
Event
,
EventAdmin
)
\ No newline at end of file
admin
.
site
.
register
(
Event
,
EventAdmin
)
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