Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_appappandaway
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
Ian Rafael T. Aragoza
midterm_appappandaway
Commits
cdeb5524
Commit
cdeb5524
authored
Mar 04, 2023
by
Ian Rafael T. Aragoza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Started apps, updated dashboard app urls.py
parent
bc03bf5e
Pipeline
#2928
canceled with stages
Changes
26
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
26 changed files
with
68 additions
and
0 deletions
+68
-0
__init__.py
widget_appappandaway/announcementboard/__init__.py
+0
-0
admin.py
widget_appappandaway/announcementboard/admin.py
+3
-0
apps.py
widget_appappandaway/announcementboard/apps.py
+6
-0
__init__.py
...et_appappandaway/announcementboard/migrations/__init__.py
+0
-0
models.py
widget_appappandaway/announcementboard/models.py
+3
-0
tests.py
widget_appappandaway/announcementboard/tests.py
+3
-0
views.py
widget_appappandaway/announcementboard/views.py
+3
-0
__init__.py
widget_appappandaway/dashboard/__init__.py
+0
-0
__init__.cpython-310.pyc
...appandaway/dashboard/__pycache__/__init__.cpython-310.pyc
+0
-0
admin.cpython-310.pyc
...appappandaway/dashboard/__pycache__/admin.cpython-310.pyc
+0
-0
apps.cpython-310.pyc
..._appappandaway/dashboard/__pycache__/apps.cpython-310.pyc
+0
-0
models.cpython-310.pyc
...ppappandaway/dashboard/__pycache__/models.cpython-310.pyc
+0
-0
admin.py
widget_appappandaway/dashboard/admin.py
+3
-0
apps.py
widget_appappandaway/dashboard/apps.py
+6
-0
__init__.py
widget_appappandaway/dashboard/migrations/__init__.py
+0
-0
models.py
widget_appappandaway/dashboard/models.py
+3
-0
tests.py
widget_appappandaway/dashboard/tests.py
+3
-0
urls.py
widget_appappandaway/dashboard/urls.py
+10
-0
views.py
widget_appappandaway/dashboard/views.py
+7
-0
__init__.py
widget_appappandaway/forum/__init__.py
+0
-0
admin.py
widget_appappandaway/forum/admin.py
+3
-0
apps.py
widget_appappandaway/forum/apps.py
+6
-0
__init__.py
widget_appappandaway/forum/migrations/__init__.py
+0
-0
models.py
widget_appappandaway/forum/models.py
+3
-0
tests.py
widget_appappandaway/forum/tests.py
+3
-0
views.py
widget_appappandaway/forum/views.py
+3
-0
No files found.
widget_appappandaway/announcementboard/__init__.py
0 → 100644
View file @
cdeb5524
widget_appappandaway/announcementboard/admin.py
0 → 100644
View file @
cdeb5524
from
django.contrib
import
admin
# Register your models here.
widget_appappandaway/announcementboard/apps.py
0 → 100644
View file @
cdeb5524
from
django.apps
import
AppConfig
class
AnnouncementboardConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'announcementboard'
widget_appappandaway/announcementboard/migrations/__init__.py
0 → 100644
View file @
cdeb5524
widget_appappandaway/announcementboard/models.py
0 → 100644
View file @
cdeb5524
from
django.db
import
models
# Create your models here.
widget_appappandaway/announcementboard/tests.py
0 → 100644
View file @
cdeb5524
from
django.test
import
TestCase
# Create your tests here.
widget_appappandaway/announcementboard/views.py
0 → 100644
View file @
cdeb5524
from
django.shortcuts
import
render
# Create your views here.
widget_appappandaway/dashboard/__init__.py
0 → 100644
View file @
cdeb5524
widget_appappandaway/dashboard/__pycache__/__init__.cpython-310.pyc
0 → 100644
View file @
cdeb5524
File added
widget_appappandaway/dashboard/__pycache__/admin.cpython-310.pyc
0 → 100644
View file @
cdeb5524
File added
widget_appappandaway/dashboard/__pycache__/apps.cpython-310.pyc
0 → 100644
View file @
cdeb5524
File added
widget_appappandaway/dashboard/__pycache__/models.cpython-310.pyc
0 → 100644
View file @
cdeb5524
File added
widget_appappandaway/dashboard/admin.py
0 → 100644
View file @
cdeb5524
from
django.contrib
import
admin
# Register your models here.
widget_appappandaway/dashboard/apps.py
0 → 100644
View file @
cdeb5524
from
django.apps
import
AppConfig
class
DashboardConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'dashboard'
widget_appappandaway/dashboard/migrations/__init__.py
0 → 100644
View file @
cdeb5524
widget_appappandaway/dashboard/models.py
0 → 100644
View file @
cdeb5524
from
django.db
import
models
# Create your models here.
widget_appappandaway/dashboard/tests.py
0 → 100644
View file @
cdeb5524
from
django.test
import
TestCase
# Create your tests here.
widget_appappandaway/dashboard/urls.py
0 → 100644
View file @
cdeb5524
from
django.shortcuts
import
render
from
django.urls
import
path
from
.views
import
index
# Create your views here.
urlpatterns
=
[
path
(
''
,
index
,
name
=
'index'
),
]
app_name
=
"dashboard"
\ No newline at end of file
widget_appappandaway/dashboard/views.py
0 → 100644
View file @
cdeb5524
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
# Create your views here.
def
index
(
request
):
return
HttpResponse
(
'Dashboard app.'
)
widget_appappandaway/forum/__init__.py
0 → 100644
View file @
cdeb5524
widget_appappandaway/forum/admin.py
0 → 100644
View file @
cdeb5524
from
django.contrib
import
admin
# Register your models here.
widget_appappandaway/forum/apps.py
0 → 100644
View file @
cdeb5524
from
django.apps
import
AppConfig
class
ForumConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'forum'
widget_appappandaway/forum/migrations/__init__.py
0 → 100644
View file @
cdeb5524
widget_appappandaway/forum/models.py
0 → 100644
View file @
cdeb5524
from
django.db
import
models
# Create your models here.
widget_appappandaway/forum/tests.py
0 → 100644
View file @
cdeb5524
from
django.test
import
TestCase
# Create your tests here.
widget_appappandaway/forum/views.py
0 → 100644
View file @
cdeb5524
from
django.shortcuts
import
render
# Create your views here.
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