{% extends 'layout/default.html' %} {% load i18n %} {% block title %}{% translate "Attachments" %}{% endblock %} {% block breadcumbheading %} {% translate "Manage Attachments" %} {% endblock %} {% block breadcumbfirst %} Manage Attachment {% endblock %} {% block breadcumbaddmore %} {% endblock %} {% block content %}

Attachments for Lead : {{lead.first_name}} {{lead.first_name}} {% if lead.company_name %} ({{lead.company_name}}) {% endif %}

Photos


Files

    {% for file in attachmentfiless %} {% if file.is_image %}
  • {{ file.filename }}
  • {% else %}
  • 📄 {{ file.filename }}
  • {% endif %} {% empty %}
    • No file attachments found.
    {% endfor %}
{% endblock content %}