Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_Francoconuts
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Chester Tan
widget_Francoconuts
Commits
efb32d62
Commit
efb32d62
authored
May 22, 2022
by
Chester Tan
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://gitlab.discs.ateneo.edu/chesterpogi/widget_Francoconuts
parents
463341b3
aa2c4b30
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
38 additions
and
14 deletions
+38
-14
homepage.html
widget_Francoconuts/homepage/templates/homepage.html
+0
-4
widgetuser_detail.html
...conuts/homepage/templates/homepage/widgetuser_detail.html
+11
-0
widgetuser_list.html
...coconuts/homepage/templates/homepage/widgetuser_list.html
+14
-0
urls.py
widget_Francoconuts/homepage/urls.py
+4
-4
views.py
widget_Francoconuts/homepage/views.py
+9
-6
pepe.png
widget_Francoconuts/static/homepage/pepe.png
+0
-0
No files found.
widget_Francoconuts/homepage/templates/homepage.html
deleted
100644 → 0
View file @
463341b3
<h1>
WIDGET USERS:
</h1>
{% for data in homepage %}
{{data.last_name}}, {{data.first_name}} {{data.middle_name}}: {{data.id_num}}, {{data.email}}, {{data.department.dept_name}}, {{data.department.home_unit}}
<br>
{% endfor %}
widget_Francoconuts/homepage/templates/homepage/widgetuser_detail.html
0 → 100644
View file @
efb32d62
{% block content %}
<ul>
<li>
Complete Name: {{widgetuser.last_name}}, {{widgetuser.first_name}} {{widgetuser.middle_name}}
</li>
<li>
{{widgetuser.id_num}}
</li>
<li>
{{widgetuser.email}}
</li>
<li>
{{widgetuser.department.dept_name}}
</li>
<li>
{{widgetuser.department.home_unit}}
</li>
{% load static %}
<li><img
src=
"{% static 'homepage/pepe.png' %}"
alt=
"image"
></li>
</ul>
{% endblock content %}
widget_Francoconuts/homepage/templates/homepage/widgetuser_list.html
0 → 100644
View file @
efb32d62
{% extends 'base.html' %}
{% block content%}
<h1>
Welcome to Widget!
</h1>
<ul>
Widget Users:
<br>
{% for widgetuser in object_list|dictsort:"last_name" %}
<body>
<a
href=
"{% url 'homepage:widgetuser-detail' id_num=widgetuser.id_num %}"
>
{{forloop.counter}}. {{widgetuser.last_name}}, {{widgetuser.first_name}} {{widgetuser.middle_name}}
<br>
</a>
</body>
{% endfor %}
</ul>
{% endblock content%}
widget_Francoconuts/homepage/urls.py
View file @
efb32d62
from
django.urls
import
path
from
django.urls
import
path
from
.views
import
WidgetUserListView
,
WidgetUserDetailView
from
.views
import
homepage
urlpatterns
=
[
urlpatterns
=
[
path
(
''
,
homepage
,
name
=
'homepage'
),
path
(
''
,
WidgetUserListView
.
as_view
(),
name
=
'widgetuser-list'
),
path
(
'users/<str:id_num>/details/'
,
WidgetUserDetailView
.
as_view
(),
name
=
'widgetuser-detail'
)
]
]
app_name
=
'homepage'
app_name
=
'homepage'
\ No newline at end of file
widget_Francoconuts/homepage/views.py
View file @
efb32d62
from
django.shortcuts
import
render
from
django.shortcuts
import
render
from
.models
import
Department
,
WidgetUser
from
.models
import
Department
,
WidgetUser
from
django.views.generic.detail
import
DetailView
from
django.views.generic.list
import
ListView
class
WidgetUserListView
(
ListView
):
model
=
WidgetUser
def
homepage
(
request
):
class
WidgetUserDetailView
(
DetailView
):
homepage_context
=
WidgetUser
.
objects
.
all
()
model
=
WidgetUser
context
=
{
'homepage'
:
homepage_context
def
get_object
(
self
,
queryset
=
None
):
}
return
WidgetUser
.
objects
.
get
(
id_num
=
self
.
kwargs
.
get
(
"id_num"
))
return
render
(
request
,
'homepage.html'
,
context
)
widget_Francoconuts/static/homepage/pepe.png
0 → 100644
View file @
efb32d62
152 KB
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