Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_robo_mommy
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Raul Jarod Conanan
midterm_robo_mommy
Commits
efd8c198
Commit
efd8c198
authored
Mar 05, 2023
by
Al Vincent E. Bomediano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add app Calendar with development prerequisites
parent
67012e5e
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
33 additions
and
1 deletion
+33
-1
__init__.py
widget_robo_mommy/widget_Calendar/__init__.py
+0
-0
admin.py
widget_robo_mommy/widget_Calendar/admin.py
+3
-0
apps.py
widget_robo_mommy/widget_Calendar/apps.py
+6
-0
__init__.py
widget_robo_mommy/widget_Calendar/migrations/__init__.py
+0
-0
models.py
widget_robo_mommy/widget_Calendar/models.py
+3
-0
tests.py
widget_robo_mommy/widget_Calendar/tests.py
+3
-0
urls.py
widget_robo_mommy/widget_Calendar/urls.py
+9
-0
views.py
widget_robo_mommy/widget_Calendar/views.py
+5
-0
__init__.cpython-311.pyc
...my/widget_robo_mommy/__pycache__/__init__.cpython-311.pyc
+0
-0
settings.cpython-311.pyc
...my/widget_robo_mommy/__pycache__/settings.cpython-311.pyc
+0
-0
settings.py
widget_robo_mommy/widget_robo_mommy/settings.py
+1
-0
urls.py
widget_robo_mommy/widget_robo_mommy/urls.py
+3
-1
No files found.
widget_robo_mommy/widget_Calendar/__init__.py
0 → 100644
View file @
efd8c198
widget_robo_mommy/widget_Calendar/admin.py
0 → 100644
View file @
efd8c198
from
django.contrib
import
admin
# Register your models here.
widget_robo_mommy/widget_Calendar/apps.py
0 → 100644
View file @
efd8c198
from
django.apps
import
AppConfig
class
WidgetCalendarConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'widget_Calendar'
widget_robo_mommy/widget_Calendar/migrations/__init__.py
0 → 100644
View file @
efd8c198
widget_robo_mommy/widget_Calendar/models.py
0 → 100644
View file @
efd8c198
from
django.db
import
models
# Create your models here.
widget_robo_mommy/widget_Calendar/tests.py
0 → 100644
View file @
efd8c198
from
django.test
import
TestCase
# Create your tests here.
widget_robo_mommy/widget_Calendar/urls.py
0 → 100644
View file @
efd8c198
from
django.urls
import
path
from
.views
import
index
urlpatterns
=
[
path
(
''
,
index
,
name
=
'index'
),
]
app_name
=
"widget_Calendar"
widget_robo_mommy/widget_Calendar/views.py
0 → 100644
View file @
efd8c198
from
django.http
import
HttpResponse
def
index
(
request
):
return
HttpResponse
(
'Hello World! This came from the index view'
)
widget_robo_mommy/widget_robo_mommy/__pycache__/__init__.cpython-311.pyc
0 → 100644
View file @
efd8c198
File added
widget_robo_mommy/widget_robo_mommy/__pycache__/settings.cpython-311.pyc
0 → 100644
View file @
efd8c198
File added
widget_robo_mommy/widget_robo_mommy/settings.py
View file @
efd8c198
...
...
@@ -37,6 +37,7 @@ INSTALLED_APPS = [
'django.contrib.sessions'
,
'django.contrib.messages'
,
'django.contrib.staticfiles'
,
'widget_Calendar'
,
]
MIDDLEWARE
=
[
...
...
widget_robo_mommy/widget_robo_mommy/urls.py
View file @
efd8c198
...
...
@@ -14,8 +14,10 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from
django.contrib
import
admin
from
django.urls
import
path
from
django.urls
import
include
,
path
urlpatterns
=
[
path
(
'widget_Calendar/'
,
include
(
'widget_Calendar.urls'
,
namespace
=
"widget_Calendar"
)),
path
(
'admin/'
,
admin
.
site
.
urls
),
]
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