Created the template widgetuser-details.html

parent 8fc6413e
{% extends 'base.html' %}
{% load static %}
{% block page-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 %}
<p class="centerB">
<a href="{% url 'dashboard:widgetuser-update' object.pk %}">
<button class="btn edit">Edit Widget User</button>
</a>
</p>
{% 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