Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_nicsbabes
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
Nics De Vega
midterm_nicsbabes
Commits
f976335a
Commit
f976335a
authored
Mar 06, 2023
by
rachbit
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
created app assignments
parent
2d040343
Changes
12
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
31 additions
and
1 deletion
+31
-1
__init__.py
widget_nicsbabes/assignments/__init__.py
+0
-0
admin.py
widget_nicsbabes/assignments/admin.py
+3
-0
apps.py
widget_nicsbabes/assignments/apps.py
+6
-0
__init__.py
widget_nicsbabes/assignments/migrations/__init__.py
+0
-0
models.py
widget_nicsbabes/assignments/models.py
+3
-0
tests.py
widget_nicsbabes/assignments/tests.py
+3
-0
urls.py
widget_nicsbabes/assignments/urls.py
+8
-0
views.py
widget_nicsbabes/assignments/views.py
+5
-0
__init__.cpython-39.pyc
...abes/widget_nicsbabes/__pycache__/__init__.cpython-39.pyc
+0
-0
settings.cpython-39.pyc
...abes/widget_nicsbabes/__pycache__/settings.cpython-39.pyc
+0
-0
settings.py
widget_nicsbabes/widget_nicsbabes/settings.py
+2
-1
urls.py
widget_nicsbabes/widget_nicsbabes/urls.py
+1
-0
No files found.
widget_nicsbabes/assignments/__init__.py
0 → 100644
View file @
f976335a
widget_nicsbabes/assignments/admin.py
0 → 100644
View file @
f976335a
from
django.contrib
import
admin
# Register your models here.
widget_nicsbabes/assignments/apps.py
0 → 100644
View file @
f976335a
from
django.apps
import
AppConfig
class
AssignmentsConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'assignments'
widget_nicsbabes/assignments/migrations/__init__.py
0 → 100644
View file @
f976335a
widget_nicsbabes/assignments/models.py
0 → 100644
View file @
f976335a
from
django.db
import
models
# Create your models here.
widget_nicsbabes/assignments/tests.py
0 → 100644
View file @
f976335a
from
django.test
import
TestCase
# Create your tests here.
widget_nicsbabes/assignments/urls.py
0 → 100644
View file @
f976335a
from
django.urls
import
path
from
.views
import
index
urlpatterns
=
[
path
(
''
,
index
,
name
=
'index'
),
]
# This might be needed, depending on your Django version
app_name
=
"assignments"
widget_nicsbabes/assignments/views.py
0 → 100644
View file @
f976335a
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
def
index
(
request
):
return
HttpResponse
(
'Hello World! This is assignments'
)
widget_nicsbabes/widget_nicsbabes/__pycache__/__init__.cpython-39.pyc
View file @
f976335a
No preview for this file type
widget_nicsbabes/widget_nicsbabes/__pycache__/settings.cpython-39.pyc
View file @
f976335a
No preview for this file type
widget_nicsbabes/widget_nicsbabes/settings.py
View file @
f976335a
...
...
@@ -44,6 +44,7 @@ INSTALLED_APPS = [
'announcement_board'
,
'dashboard'
,
'forum'
,
'assignments'
]
MIDDLEWARE
=
[
...
...
widget_nicsbabes/widget_nicsbabes/urls.py
View file @
f976335a
...
...
@@ -21,4 +21,5 @@ urlpatterns = [
path
(
'admin/'
,
admin
.
site
.
urls
),
path
(
'forum/'
,
include
(
'forum.urls'
,
namespace
=
"forum"
)),
path
(
'announcements/'
,
include
(
'announcement_board.urls'
,
namespace
=
"announcement_board"
)),
path
(
'assignments/'
,
include
(
'assignments.urls'
,
namespace
=
"assignments"
)),
]
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