Commit 029a82c5 authored by John Tamano's avatar John Tamano

added designs to homepage

parent caf00d7f
h1 {
color: white;
border: 1px solid blue;
border-width: 1px;
background-color: gold;
font-family: Arial, Helvetica, sans-serif;
}
h2 {
color: white;
border: 1px solid blue;
border-width: 1px;
font-weight: bold;
background-color: gold;
}
body {
color: black;
border: blue;
background-color: beige;
font-family: Arial, Helvetica, sans-serif;
}
{% load static %}
<link rel="stylesheet" type="text/css" href="{% static 'homepage/style.css' %}"
<!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<link rel="stylesheet" href="style.css"> {% block title %}
<title>{% block title %}{% endblock %}</title> {% endblock %}
{% block styles %}{% endblock %} </head>
</head>
<body> <body>
{% block content %}{% endblock %} {% block content %}
{% endblock %}
</body> </body>
</html> </html>
\ No newline at end of file
{% extends "homepage/base.html" %} {% extends "homepage/base.html" %}
{% block content %} {% block content %}
<center><img src="https://thumbs.dreamstime.com/b/default-avatar-profile-vector-user-profile-default-avatar-profile-vector-user-profile-profile-179376714.jpg" style="width: 100px;height: 100px;">
</center>
<br>
<p1> <p1>
{{widgetuserdetails.last_name}}, <h2><center>{{widgetuserdetails.last_name}},
{{widgetuserdetails.first_name}} {{widgetuserdetails.first_name}}
{{widgetuserdetails.middle_name}} {{widgetuserdetails.middle_name}}
</center>
</h2>
<br> <br>
<li>{{widgetuserdetails.id_num}}</li> <li>{{widgetuserdetails.id_num}}</li>
<li>{{widgetuserdetails.email}}</li> <li>{{widgetuserdetails.email}}</li>
<li>{{widgetuserdetails.department.dept_name}}</li> <li>{{widgetuserdetails.department.dept_name}}</li>
<li>{{widgetuserdetails.department.home_unit}}</li> <li>{{widgetuserdetails.department.home_unit}}</li>
</p1> </p1>
<img src="https://thumbs.dreamstime.com/b/default-avatar-profile-vector-user-profile-default-avatar-profile-vector-user-profile-profile-179376714.jpg" style="width: 100px;height: 100px;">
{% endblock %} {% endblock %}
\ No newline at end of file
{% extends "homepage/base.html" %} {% extends "homepage/base.html" %}
{% block content %} {% block content %}
<h1>Welcome to Widget!</h1> <center><h1>Welcome to Widget!</h1></center>
<p1>Widget Users:</p1> <p1>Widget Users:</p1>
<ol> <ol>
{% for WidgetUser in WidgetUsers %} {% for WidgetUser in WidgetUsers %}
......
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