Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
midterm_OhMyBash
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
Nheo Samson
midterm_OhMyBash
Commits
0e6a4259
Commit
0e6a4259
authored
Mar 05, 2023
by
Nheo Samson
🎸
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'calendar' into 'staging'
Calendar See merge request
!8
parents
691c6991
ba4c2160
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
11 deletions
+2
-11
admin.py
widget_OhMyBash/widget_calendar/admin.py
+1
-10
views.py
widget_OhMyBash/widget_calendar/views.py
+1
-1
No files found.
widget_OhMyBash/widget_calendar/admin.py
View file @
0e6a4259
from
django.contrib
import
admin
from
.models
import
Event
,
Location
...
...
@@ -28,13 +27,5 @@ class LocationAdmin(admin.ModelAdmin):
list_filter
=
(
'mode'
,
)
class
EventInline
(
admin
.
TabularInline
):
model
=
Event
class
LocationInline
(
admin
.
TabularInline
):
model
=
Location
admin
.
site
.
register
(
Event
,
EventAdmin
)
admin
.
site
.
register
(
Location
,
LocationAdmin
)
widget_OhMyBash/widget_calendar/views.py
View file @
0e6a4259
from
django.http
import
HttpResponse
from
.models
import
Event
,
Location
from
.models
import
Event
def
index
(
request
):
...
...
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