{% extends 'consumerapp/base.html' %} {% block title %} Employee Detail {% endblock %} {% block body %} {% if employee %}
  1. Employee ID is : {{ employee.id }}
  2. Employee Name is : {{ employee.ename }}
  3. Employee Salary is : {{ employee.salary }}
  4. Employee City is : {{ employee.city }}
  5. Employee Email is : {{ employee.email }}
{% else %}

{{ message }}

{% endif %}

Go To Table

{% endblock %}