Commit 739ba144 authored by Pierre Ashley Salcedo's avatar Pierre Ashley Salcedo

fix: removed unnecessary files and lines of code, and fixed text formatting

parent dfe830d6
<!DOCTYPE html>
<html>
<head></head>
<body>
<h1> WIDGET USERS: </h1>
{% for widget_user in widget_user_entries %}
<p>
{{widget_user.last_name}},
{{widget_user.first_name}}
{{widget_user.middle_name}}:
{{widget_user.id_num}},
{{widget_user.email}},
{{widget_user.department.dept_name}}
{{widget_user.department.home_unit}}
</p>
{% endfor %}
</body>
</html>
\ No newline at end of file
from django.shortcuts import render
from django.http import HttpResponse
from .models import WidgetUser
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment