Commit 435347a7 authored by Elaiza Bolislis's avatar Elaiza Bolislis

Created a template named widgetuser-details.html to display a widget user's...

Created a template named widgetuser-details.html to display a widget user's information in detail in the Per Widget User Details page.
parent fbebed89
{% extends 'base.html' %}
{% load static %}
{% block title %}{{ object.last_name }}, {{ object.first_name }}{% endblock %}
{% block heading %}
<h1>
{{ object.first_name }} {{ object.middle_name }} {{ object.last_name }}
</h1>
{% endblock %}
{% block content %}
<p>
{{ object.department.dept_name }}<br>
{{ object.department.home_unit }}<br>
</p>
{% endblock %}
{% block footing %}
<a href="{% url 'dashboard:widgetuser-update' object.pk %}">
<button class="btn edit">Edit Widget User</button>
</a>
{% endblock %}
\ No newline at end of file
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