{% extends "adminpanel/base.html" %} {% block title %}Files — admin{% endblock %} {% block heading %}Files{% endblock %} {% block content %}
Client accounts only see files marked shared under their own projects. Contracts and internal notes stay private to you.
{% for p in projects %}

{{ p.client }} — {{ p.name }}

{{ p.reference }}
{% for f in p.files.all %} {% empty %}{% endfor %}
FileFolderAddedVisible to client
{{ f.name }}{{ f.get_folder_display }}{{ f.uploaded_at|date:"j M Y" }} {% if f.client_visible %}Shared{% else %}Private{% endif %} Open
No files on this project.
{% empty %}

No projects for that client

Pick another client or create a project first.

{% endfor %}
{% endblock %}