{% extends "layout.html" %} {% block title %}{% if contact.first_name.len() > 0 %}{{contact.first_name}} {{contact.last_name}}{%else%}Create Contact{% endif %}{% endblock %} {% block description %}{{contact.description}}{% endblock %} {% block head %} {% endblock %} {% block content %}

{{contact.first_name}} {{contact.last_name}}

{% if contact.key.to_string() != "00000000-0000-0000-0000-000000000000" %} ➕ Add Note ➕ Attach File {% endif %}
{% if notes.len() > 0 %}

Notes & Docs

{% for note in notes %} {% endfor %} {%else%}

Add Your First Note

Create a note at the project level, project onboarding, project style guides and any project notes that you want organized under this project

{% endif %}
{% if files.len() > 0 %}

Files

{% for file in files %} {% endfor %} {%else%}

Attach Your First File

Attach a file to be visible for the project. Easily share and access files you store here.

{% endif %}
{% endblock %}