Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_CtrlF
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
Fritzie Dianne Del Pilar
midterm_CtrlF
Commits
cda86b90
Commit
cda86b90
authored
May 16, 2023
by
Mary Adelaide A. Salto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modified files for css styling implementation
parent
108b9aba
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
177 additions
and
9 deletions
+177
-9
dashboard.html
widget_CtrlF/dashboard/templates/dashboard/dashboard.html
+41
-6
widgetuser-add.html
...t_CtrlF/dashboard/templates/dashboard/widgetuser-add.html
+40
-1
widgetuser-details.html
...rlF/dashboard/templates/dashboard/widgetuser-details.html
+42
-1
widgetuser-edit.html
..._CtrlF/dashboard/templates/dashboard/widgetuser-edit.html
+40
-1
style.css
widget_CtrlF/static/style.css
+14
-0
No files found.
widget_CtrlF/dashboard/templates/dashboard/dashboard.html
View file @
cda86b90
...
...
@@ -3,7 +3,47 @@
{% block page-title %}Widget v2{% endblock %}
{% block heading %}
<h1>
Welcome to Widget!
</h1>
{% endblock %}
{% block heading %}
<!DOCTYPE html>
<html>
<head>
<style>
ul
{
list-style-type
:
none
;
margin
:
0
;
padding
:
0
;
overflow
:
hidden
;
background-color
:
#333
;
}
li
{
float
:
left
;
}
li
a
{
display
:
block
;
color
:
white
;
text-align
:
center
;
padding
:
10px
15px
;
text-decoration
:
none
;
}
li
a
:hover
{
background-color
:
#57065b
;
}
</style>
</head>
<body>
<ul>
<li><a
class=
"active"
href=
"/announcement_board/"
>
Announcement Board
</a></li>
<li><a
href=
"/forum/"
>
Forum
</a></li>
</ul>
</body>
</html>
<h1>
Welcome to Widget!
</h1>
{% endblock %}
{% block content %}
<p>
...
...
@@ -20,9 +60,4 @@
<button
class=
"btn add"
>
Add Widget User
</button>
</a>
</p>
<p>
<a
href=
"/announcement_board/"
class=
"link"
>
Announcement Board
</a><br>
<a
href=
"/forum/"
class=
"link"
>
Forum
</a><br>
</p>
{% endblock %}
\ No newline at end of file
widget_CtrlF/dashboard/templates/dashboard/widgetuser-add.html
View file @
cda86b90
...
...
@@ -3,8 +3,47 @@
{% block page-title %}Add Widget User{% endblock %}
{% block heading %}
<h1>
Add a new Widget User:
</h1>
{% endblock %}
{% block heading %}
<!DOCTYPE html>
<html>
<head>
<style>
ul
{
list-style-type
:
none
;
margin
:
0
;
padding
:
0
;
overflow
:
hidden
;
background-color
:
#333
;
}
li
{
float
:
left
;
}
li
a
{
display
:
block
;
color
:
white
;
text-align
:
center
;
padding
:
10px
15px
;
text-decoration
:
none
;
}
li
a
:hover
{
background-color
:
#57065b
;
}
</style>
</head>
<body>
<ul>
<li><a
class=
"active"
href=
"/dashboard/"
>
Back
</a></li>
<li><a
href=
"/announcement_board/"
>
Announcement Board
</a></li>
<li><a
href=
"/forum/"
>
Forum
</a></li>
</ul>
</body>
</html>
<h1>
Add a new Widget User:
</h1>
{% endblock %}
{% block content %}
<form
method=
"post"
>
{% csrf_token %}
...
...
widget_CtrlF/dashboard/templates/dashboard/widgetuser-details.html
View file @
cda86b90
...
...
@@ -3,7 +3,48 @@
{% block page-title %}{{ object.last_name }}, {{ object.first_name }}{% endblock %}
{% block heading %}
<h1>
{{ object.first_name }} {{ object.middle_name }} {{ object.last_name }}
</h1>
{% endblock %}
{% block heading %}
<!DOCTYPE html>
<html>
<head>
<style>
ul
{
list-style-type
:
none
;
margin
:
0
;
padding
:
0
;
overflow
:
hidden
;
background-color
:
#333
;
}
li
{
float
:
left
;
}
li
a
{
display
:
block
;
color
:
white
;
text-align
:
center
;
padding
:
10px
15px
;
text-decoration
:
none
;
}
li
a
:hover
{
background-color
:
#57065b
;
}
</style>
</head>
<body>
<ul>
<li><a
class=
"active"
href=
"/dashboard/"
>
Back
</a></li>
<li><a
href=
"/announcement_board/"
>
Announcement Board
</a></li>
<li><a
href=
"/forum/"
>
Forum
</a></li>
</ul>
</body>
</html>
<h1>
{{ object.first_name }} {{ object.middle_name }} {{ object.last_name }}
</h1>
{% endblock %}
{% block content %}
<p>
...
...
widget_CtrlF/dashboard/templates/dashboard/widgetuser-edit.html
View file @
cda86b90
...
...
@@ -3,8 +3,47 @@
{% block page-title %}Edit Widget User{% endblock %}
{% block heading %}
<h1>
Edit Widget User:
</h1>
{% endblock %}
{% block heading %}
<!DOCTYPE html>
<html>
<head>
<style>
ul
{
list-style-type
:
none
;
margin
:
0
;
padding
:
0
;
overflow
:
hidden
;
background-color
:
#333
;
}
li
{
float
:
left
;
}
li
a
{
display
:
block
;
color
:
white
;
text-align
:
center
;
padding
:
10px
15px
;
text-decoration
:
none
;
}
li
a
:hover
{
background-color
:
#57065b
;
}
</style>
</head>
<body>
<ul>
<li><a
class=
"active"
href=
"/dashboard/"
>
Back
</a></li>
<li><a
href=
"/announcement_board/"
>
Announcement Board
</a></li>
<li><a
href=
"/forum/"
>
Forum
</a></li>
</ul>
</body>
</html>
<h1>
Edit Widget User:
</h1>
{% endblock %}
{% block content %}
<form
method=
"post"
>
{% csrf_token %}
...
...
widget_CtrlF/static/style.css
View file @
cda86b90
...
...
@@ -112,3 +112,17 @@ section {
font-weight
:
700
;
font-family
:
'Dancing Script'
,
cursive
;
}
/* dashboard pages styles */
body
{
background-color
:
thistle
;
font-size
:
120%
;
color
:
black
;
font-family
:
'Sans Serif'
;
text-align
:
justify
;
}
h1
{
font-family
:
'Papyrus'
;
text-align
:
center
;
}
\ No newline at end of file
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