{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %} {% load humanize %}

My Projects

{% if perms.crm.view_project %} {% endif %}

Upcoming Interactions

{% if perms.crm.view_interaction %} {% endif %} {% with upcoming_interactions as interactions %} {% include "crm/interaction/_list.html" %} {% endwith %}

Recent Interactions

{% if perms.crm.view_interaction %} {% endif %} {% with recent_interactions as interactions %} {% include "crm/interaction/_list.html" %} {% endwith %}
{% endblock %}