Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_jenicaesports
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
Christianneil Emmanuel Ocampo
midterm_jenicaesports
Commits
e03320ff
Commit
e03320ff
authored
May 10, 2023
by
Jenica Vizmanos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Created html files for dashboard specifications
parent
3505d8fc
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
60 additions
and
0 deletions
+60
-0
dashboard.html
...enicaesports/dashboard/templates/dashboard/dashboard.html
+21
-0
widgetuser-add.html
...esports/dashboard/templates/dashboard/widgetuser-add.html
+13
-0
widgetuser-details.html
...rts/dashboard/templates/dashboard/widgetuser-details.html
+13
-0
widgetuser-edit.html
...sports/dashboard/templates/dashboard/widgetuser-edit.html
+13
-0
No files found.
widget_jenicaesports/dashboard/templates/dashboard/dashboard.html
0 → 100644
View file @
e03320ff
{% extends 'base.html' %}
{% load static %}
{% block title %}Widget v2{% endblock %}
{% block content %}
<h1>
Welcome to Widget!
</h1>
<p>
Widget Users:
<br>
{% for user in users %}
<a
href=
'{{ user.get_absolute_url }}'
>
{{ user }}
</a><br>
{% endfor %}
</p>
<p>
<a
href=
'/dashboard/widgetusers/add/'
>
Add Widget User
</a>
</p>
<p>
<a
href=
'/announcements/'
>
Announcement Board
</a><br>
<a
href=
'/forum/'
>
Forum
</a><br>
<a
href=
'/assignments/'
>
Assignments
</a><br>
<a
href=
'/calendar/'
>
Calendar
</a><br>
</p>
{% endblock %}
\ No newline at end of file
widget_jenicaesports/dashboard/templates/dashboard/widgetuser-add.html
0 → 100644
View file @
e03320ff
{% extends 'base.html' %}
{% load static %}
{% block title %}Add Widget User{% endblock %}
{% block content %}
<h1>
Add a new Widget User:
</h1>
<form
method=
"post"
>
{% csrf_token %}
{% for field in form %}
{{ field.label }}: {{ field }}
<br><br>
{% endfor %}
<input
type=
"submit"
value=
"Add Widget User"
>
</form>
{% endblock %}
\ No newline at end of file
widget_jenicaesports/dashboard/templates/dashboard/widgetuser-details.html
0 → 100644
View file @
e03320ff
{% extends 'base.html' %}
{% load static %}
{% block title %}{{ object }}{% endblock %}
{% block content %}
<h1>
{{ object.first_name }} {{ object.middle_name }} {{ object.last_name }}
</h1>
<p>
{{ object.department.dept_name }}
<br>
{{ object.department.home_unit }}
</p>
<p>
<a
href=
'/dashboard/widgetusers/{{ object.pk }}/edit/'
>
Edit Widget User
</a>
</p>
{% endblock %}
\ No newline at end of file
widget_jenicaesports/dashboard/templates/dashboard/widgetuser-edit.html
0 → 100644
View file @
e03320ff
{% extends 'base.html' %}
{% load static %}
{% block title %}Edit Widget User{% endblock %}
{% block content %}
<h1>
Edit Widget User:
</h1>
<form
method=
"post"
>
{% csrf_token %}
{% for field in form %}
{{ field.label }}: {{ field }}
<br><br>
{% endfor %}
<input
type=
"submit"
value=
"Save Changes to Widget User"
>
</form>
{% endblock %}
\ 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