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
e6682574
Commit
e6682574
authored
May 11, 2023
by
Lance Dominic B. Santuyo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made 'Assignments' lowercase
parent
c4f57a8e
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
9 deletions
+9
-9
apps.py
widget_robo_mommy/Assignments/apps.py
+1
-1
0002_alter_assignment_course.py
...my/Assignments/migrations/0002_alter_assignment_course.py
+2
-2
views.py
widget_robo_mommy/Dashboard/views.py
+1
-1
0003_alter_event_course.py
...mmy/widget_Calendar/migrations/0003_alter_event_course.py
+2
-2
models.py
widget_robo_mommy/widget_Calendar/models.py
+1
-1
settings.py
widget_robo_mommy/widget_robo_mommy/settings.py
+1
-1
urls.py
widget_robo_mommy/widget_robo_mommy/urls.py
+1
-1
No files found.
widget_robo_mommy/Assignments/apps.py
View file @
e6682574
...
...
@@ -3,4 +3,4 @@ from django.apps import AppConfig
class
AssignmentsConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'
A
ssignments'
name
=
'
a
ssignments'
widget_robo_mommy/Assignments/migrations/0002_alter_assignment_course.py
View file @
e6682574
...
...
@@ -7,13 +7,13 @@ import django.db.models.deletion
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'
A
ssignments'
,
'0001_initial'
),
(
'
a
ssignments'
,
'0001_initial'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'assignment'
,
name
=
'course'
,
field
=
models
.
ForeignKey
(
null
=
True
,
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
to
=
'
A
ssignments.course'
),
field
=
models
.
ForeignKey
(
null
=
True
,
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
to
=
'
a
ssignments.course'
),
),
]
widget_robo_mommy/Dashboard/views.py
View file @
e6682574
...
...
@@ -25,7 +25,7 @@ def Dashboard_list_view(request):
html_string_3
=
'<a href="/Widgetusers/add"><button value="click here" > Add Widget User</button></a><br><br>'
html_string_3
+=
'<a href="/Announcements/">Announcement Board</a><br>'
html_string_3
+=
'<a href="/Forum/">Forum</a><br>'
html_string_3
+=
'<a href="/
A
ssignments">Assignment</a><br>'
html_string_3
+=
'<a href="/
a
ssignments">Assignment</a><br>'
html_string_3
+=
'<a href="/Calendar/">Calendar</a><br>'
html_string_final
=
html_string_1
+
html_string_2
+
html_string_3
+
'</html>'
...
...
widget_robo_mommy/widget_Calendar/migrations/0003_alter_event_course.py
View file @
e6682574
...
...
@@ -7,7 +7,7 @@ import django.db.models.deletion
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'
A
ssignments'
,
'0002_alter_assignment_course'
),
(
'
a
ssignments'
,
'0002_alter_assignment_course'
),
(
'widget_Calendar'
,
'0002_event_location_delete_indexcard_event_location'
),
]
...
...
@@ -15,6 +15,6 @@ class Migration(migrations.Migration):
migrations
.
AlterField
(
model_name
=
'event'
,
name
=
'course'
,
field
=
models
.
ForeignKey
(
null
=
True
,
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
related_name
=
'event'
,
to
=
'
A
ssignments.course'
),
field
=
models
.
ForeignKey
(
null
=
True
,
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
related_name
=
'event'
,
to
=
'
a
ssignments.course'
),
),
]
widget_robo_mommy/widget_Calendar/models.py
View file @
e6682574
from
django.db
import
models
from
A
ssignments.models
import
Course
from
a
ssignments.models
import
Course
MODE_TYPES
=
(
...
...
widget_robo_mommy/widget_robo_mommy/settings.py
View file @
e6682574
...
...
@@ -38,7 +38,7 @@ ALLOWED_HOSTS = []
INSTALLED_APPS
=
[
'announcements'
,
'
A
ssignments'
,
'
a
ssignments'
,
'forum.apps.ForumConfig'
,
'Dashboard.apps.DashboardConfig'
,
'django.contrib.admin'
,
...
...
widget_robo_mommy/widget_robo_mommy/urls.py
View file @
e6682574
...
...
@@ -22,7 +22,7 @@ urlpatterns = [
path
(
'widget_Calendar/'
,
include
(
'widget_Calendar.urls'
,
namespace
=
"widget_Calendar"
)),
path
(
''
,
include
(
'Dashboard.urls'
,
namespace
=
"Dashboard"
)),
path
(
'admin/'
,
admin
.
site
.
urls
),
path
(
'
Assignments/'
,
include
(
'Assignments.urls'
,
namespace
=
"A
ssignments"
)),
path
(
'
assignments/'
,
include
(
'assignments.urls'
,
namespace
=
"a
ssignments"
)),
path
(
''
,
include
((
'forum.urls'
,
'forum'
),
namespace
=
'forum'
)),
path
(
'Dashboard/'
,
include
(
'Dashboard.urls'
,
namespace
=
"Dashboard"
)),
]
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