{% extends 'base.html' %} {% load static %} {% block title %} {% if contact.manager == request.user %} {{contact.name}} {% else %} You don't have access to this page! {% endif %} {% endblock title %} {% block content %} {% if contact.manager == request.user %}

{{contact.name}}


{% include 'partials/_card.html' %}
Date Added:   {{contact.date_added}}

  Update        Delete

{% else %}

You don't have access to this page!

{% endif %} {% endblock content %}