Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_gitgud
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
Neal Luigi D. Rodriguez
midterm_gitgud
Commits
c7b674a4
Commit
c7b674a4
authored
May 15, 2023
by
Neal Luigi D. Rodriguez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CSS Files and Styles added
parent
cf9b5575
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
74 additions
and
3 deletions
+74
-3
announcements.html
...uncement_Board/templates/announcements/announcements.html
+14
-0
assignments.html
...gitgud/Assignments/templates/Assignments/assignments.html
+14
-0
dashboard.html
widget_gitgud/Dashboard/templates/Dashboard/dashboard.html
+4
-3
db.sqlite3
widget_gitgud/db.sqlite3
+0
-0
main_style.css
widget_gitgud/static/main_style.css
+28
-0
settings.cpython-311.pyc
...gitgud/widget_gitgud/__pycache__/settings.cpython-311.pyc
+0
-0
settings.py
widget_gitgud/widget_gitgud/settings.py
+1
-0
calendar.html
...gud/widgetcalendar/templates/widgetcalendar/calendar.html
+13
-0
No files found.
widget_gitgud/Announcement_Board/templates/announcements/announcements.html
View file @
c7b674a4
...
@@ -2,6 +2,20 @@
...
@@ -2,6 +2,20 @@
{% load static %}
{% load static %}
{% block title %} Widget's Announcement Board {% endblock %}
{% block title %} Widget's Announcement Board {% endblock %}
{% block styles %}
<style>
body
{
background-color
:
rgb
(
170
,
168
,
180
);
font-family
:
Georgia
,
serif
;
font-size
:
16px
;
color
:
black
;
}
h1
{
text-align
:
center
;
}
</style>
{% endblock %}
{% block content %}
{% block content %}
<h1>
Welcome to Widget's Announcement Board!
</h1>
<h1>
Welcome to Widget's Announcement Board!
</h1>
<h2>
Announcements:
</h2>
<h2>
Announcements:
</h2>
...
...
widget_gitgud/Assignments/templates/Assignments/assignments.html
View file @
c7b674a4
...
@@ -2,6 +2,20 @@
...
@@ -2,6 +2,20 @@
{% load static %}
{% load static %}
{% block title %} Widget's Assignments {% endblock %}
{% block title %} Widget's Assignments {% endblock %}
{% block styles %}
<style>
body
{
background-color
:
rgb
(
154
,
176
,
147
);
font-family
:
Georgia
,
serif
;
font-size
:
16px
;
color
:
rgb
(
18
,
6
,
1
);
}
h1
{
text-align
:
center
;
}
</style>
{% endblock %}
{% block content %}
{% block content %}
<h1>
Welcome to Widget's Assignments
</h1>
<h1>
Welcome to Widget's Assignments
</h1>
<ul>
<ul>
...
...
widget_gitgud/Dashboard/templates/Dashboard/dashboard.html
View file @
c7b674a4
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
{% block title %}Widget V2{% endblock %}
{% block title %}Widget V2{% endblock %}
{% block content %}
{% block content %}
<link
rel=
"stylesheet"
href=
"{% static 'main_style.css' %}"
>
<h1>
Welcome to Widget!
</h1>
<h1>
Welcome to Widget!
</h1>
<ul>
<ul>
{% for user in users %}
{% for user in users %}
...
@@ -17,8 +18,8 @@
...
@@ -17,8 +18,8 @@
<p>
<p>
<a
href=
"/Announcement/announcements"
>
Announcements
</a><br>
<a
href=
"/Announcement/announcements"
>
Announcements
</a><br>
<a
href=
"/Forum/forum"
>
Forum
</a><br>
<a
href=
"/Forum/forum"
>
Forum
</a><br>
<a
href=
"/Assignments/assignments"
>
Assignments
</a><br>
<a
href=
"/Assignments/assignments"
>
Assignments
</a><br>
<a
href=
"/Calendar"
>
Calendar
</a
>
<a
href=
"/Calendar"
>
Calendar
</a><br
>
</p>
</p>
{% endblock %}
{% endblock %}
\ No newline at end of file
widget_gitgud/db.sqlite3
View file @
c7b674a4
No preview for this file type
widget_gitgud/static/main_style.css
0 → 100644
View file @
c7b674a4
h1
{
text-align
:
center
;
color
:
darkcyan
;
}
ul
{
text-align
:
center
;
font-family
:
Georgia
,
serif
;
font-size
:
16px
;
list-style-type
:
none
;
line-height
:
2
;
text-decoration
:
none
;
}
button
{
background-color
:
#40E0D0
;
font
:
Georgia
,
serif
;
border
:
none
;
color
:
black
;
padding
:
10px
30px
;
text-align
:
center
;
text-decoration
:
none
;
position
:
relative
;
left
:
44%
;
cursor
:
pointer
;
}
p
{
font-family
:
Georgia
,
serif
;
text-align
:
center
;
}
\ No newline at end of file
widget_gitgud/widget_gitgud/__pycache__/settings.cpython-311.pyc
View file @
c7b674a4
No preview for this file type
widget_gitgud/widget_gitgud/settings.py
View file @
c7b674a4
...
@@ -125,6 +125,7 @@ USE_TZ = True
...
@@ -125,6 +125,7 @@ USE_TZ = True
# https://docs.djangoproject.com/en/3.2/howto/static-files/
# https://docs.djangoproject.com/en/3.2/howto/static-files/
STATIC_URL
=
'/static/'
STATIC_URL
=
'/static/'
STATICFILES_DIRS
=
[
os
.
path
.
join
(
BASE_DIR
,
'static'
)]
# Default primary key field type
# Default primary key field type
# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field
# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field
...
...
widget_gitgud/widgetcalendar/templates/widgetcalendar/calendar.html
View file @
c7b674a4
...
@@ -2,6 +2,19 @@
...
@@ -2,6 +2,19 @@
{% load static %}
{% load static %}
{% block title %} Widget's Calendar of Activities {% endblock %}
{% block title %} Widget's Calendar of Activities {% endblock %}
{% block styles %}
<style>
body
{
background-color
:
beige
;
font-family
:
Georgia
,
serif
;
font-size
:
16px
;
color
:
black
;
}
h1
{
text-align
:
center
;
}
</style>
{% endblock %}
{% block content %}
{% block content %}
<h1>
Widget's Calendar of Activities
</h1>
<h1>
Widget's Calendar of Activities
</h1>
<ul>
<ul>
...
...
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