Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_k3git
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
Stefan Gomez
midterm_k3git
Commits
7708910f
Commit
7708910f
authored
May 15, 2023
by
MJoshBen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adjusted Main Pages for Some Apps and Fixed some notable Errors
parent
7565a8bd
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
7 additions
and
7 deletions
+7
-7
announcement-details.html
...uncement/templates/announcement/announcement-details.html
+1
-1
announcement.html
...git/announcement/templates/announcement/announcement.html
+1
-1
assignments.html
..._k3git/assignments/templates/assignments/assignments.html
+1
-1
dashboard.html
widget_k3git/dashboard/templates/dashboard/dashboard.html
+1
-1
forum.html
widget_k3git/forum/templates/forum/forum.html
+1
-1
calendar.html
...t/widget_calendar/templates/widget_calendar/calendar.html
+1
-1
urls.cpython-311.pyc
widget_k3git/widget_k3git/__pycache__/urls.cpython-311.pyc
+0
-0
urls.py
widget_k3git/widget_k3git/urls.py
+1
-1
No files found.
widget_k3git/announcement/templates/announcement/announcement-details.html
View file @
7708910f
...
...
@@ -13,5 +13,5 @@
</h3>
{% endblock %}
{% block scripts %}
<a
href=
"/announcements/{{
reaction.
announcement.pk }}/edit"
><input
type=
"submit"
value=
"Edit Announcement"
></a>
<a
href=
"/announcements/{{ announcement.pk }}/edit"
><input
type=
"submit"
value=
"Edit Announcement"
></a>
{% endblock %}
widget_k3git/announcement/templates/announcement/announcement.html
View file @
7708910f
...
...
@@ -10,7 +10,7 @@
</h3>
{% endblock %}
{% block scripts %}
<a
href=
"/announcement/add"
><input
type=
"submit"
value=
"New Announcement"
></a><br><br>
<a
href=
"/announcement
s
/add"
><input
type=
"submit"
value=
"New Announcement"
></a><br><br>
<a
href=
"/dashboard"
>
Dashboard
</a><br>
<a
href=
"/assignments"
>
Assignments
</a><br>
<a
href=
"/forum"
>
Forum
</a><br>
...
...
widget_k3git/assignments/templates/assignments/assignments.html
View file @
7708910f
...
...
@@ -12,7 +12,7 @@
{% block scripts %}
<a
href=
"/assignments/add"
><input
type=
"submit"
value=
"New Assignment"
></a><br><br>
<a
href=
"/dashboard"
>
Dashboard
</a><br>
<a
href=
"/announcement"
>
Announcements
</a><br>
<a
href=
"/announcement
s
"
>
Announcements
</a><br>
<a
href=
"/forum"
>
Forum
</a><br>
<a
href=
"/calendar"
>
Calendar
</a>
{% endblock %}
\ No newline at end of file
widget_k3git/dashboard/templates/dashboard/dashboard.html
View file @
7708910f
...
...
@@ -12,7 +12,7 @@
{% endblock %}
{% block scripts %}
<a
href=
"/dashboard/widgetusers/add"
><input
type=
"submit"
value=
"Add Widget User"
></a><br>
<a
href=
"/announcement"
>
Announcement Board
</a><br>
<a
href=
"/announcement
s
"
>
Announcement Board
</a><br>
<a
href=
"/forum"
>
Forum
</a><br>
<a
href=
"/assignments"
>
Assignments
</a><br>
<a
href=
"/calendar"
>
Calendar
</a>
...
...
widget_k3git/forum/templates/forum/forum.html
View file @
7708910f
...
...
@@ -12,7 +12,7 @@
{% block scripts %}
<a
href=
"/forum/forumposts/add"
><input
type=
"submit"
value=
"New Post"
></a><br><br>
<a
href=
"/dashboard"
>
Dashboard
</a><br>
<a
href=
"/announcement"
>
Announcements
</a><br>
<a
href=
"/announcement
s
"
>
Announcements
</a><br>
<a
href=
"/assignments"
>
Assignments
</a><br>
<a
href=
"/calendar"
>
Calendar
</a>
{% endblock %}
\ No newline at end of file
widget_k3git/widget_calendar/templates/widget_calendar/calendar.html
View file @
7708910f
...
...
@@ -13,7 +13,7 @@
{% block scripts %}
<a
href=
"/calendar/events/add"
><input
type=
"submit"
value=
"New Activity"
></a><br><br>
<a
href=
"/dashboard"
>
Dashboard
</a><br>
<a
href=
"/announcement"
>
Announcement Board
</a><br>
<a
href=
"/announcement
s
"
>
Announcement Board
</a><br>
<a
href=
"/forum"
>
Forum
</a><br>
<a
href=
"/assignments"
>
Assignments
</a><br>
{% endblock %}
\ No newline at end of file
widget_k3git/widget_k3git/__pycache__/urls.cpython-311.pyc
View file @
7708910f
No preview for this file type
widget_k3git/widget_k3git/urls.py
View file @
7708910f
...
...
@@ -2,7 +2,7 @@ from django.contrib import admin
from
django.urls
import
include
,
path
urlpatterns
=
[
path
(
'announcement/'
,
include
(
'announcement.urls'
,
namespace
=
"announcement"
)),
path
(
'announcement
s
/'
,
include
(
'announcement.urls'
,
namespace
=
"announcement"
)),
path
(
'calendar/'
,
include
(
'widget_calendar.urls'
,
namespace
=
"widget_calendar"
)),
path
(
'assignments/'
,
include
(
'assignments.urls'
,
namespace
=
"assignments"
)),
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