Overview
{% if account_record.name %}
{% endif %}
{% if account_record.phone %}
{% endif %}
{% if account_record.status %}
{% endif %}
{{ account_record.name }}
{{ account_record.phone }}
{{ account_record.status }}
{% if account_record.email %}
{% endif %}
{% if account_record.website %}
{% endif %}
{% if account_record.contacts.all %}
{% endif %}
{% if account_record.lead %}
{% endif %}
{{ account_record.email }}
{{ account_record.website }}
{% for contact in account_record.contacts.all %}
{{ contact }}
{% endfor %}
{{ account_record.lead }}
{% if account_record.billing_address_line or account_record.billing_street or account_record.billing_city or account_record.billing_state or account_record.billing_postcode or account_record.billing_country %}
{% endif %}
{% endif %}
{% if account_record.tags.all %}
{% endif %}
{{account_record.get_complete_address}}
{% if account_record.assigned_to.all %}
{% endif %}
{% if account_record.description %}
{% for user in account_record.assigned_to.all %}
{% endfor %}
{{ account_record.description }}
{% for tag in account_record.tags.all %}
{{ tag.name }}
{% endfor %}
Created by {{ account_record.created_by }} created on
{{ account_record.created_on_arrow }}
Attachments
-
{% for attachment in attachments %}
-
{% if request.user.is_superuser or request.user.role == 'ADMIN' or request.user == attachment.created_by %}
{% if attachment.attachment %} {% if 'image' in attachment.file_type %} {% thumbnail attachment.attachment "80x80" crop="center" as im %}
{% endthumbnail %} {% endif %} {% endif %}
{{attachment.file_name}} Download
Uploaded by :{{ attachment.created_by }}
{{ attachment.created_on_arrow }}
{% endfor %}
Comments
-
{% for comment in comments %}
-
{% if request.user.is_superuser or request.user.role == 'ADMIN' or request.user == comment.commented_by %}
{{ comment.comment }}
{{ comment.commented_by }}
{{ comment.commented_on_arrow }}
{% endfor %}
{% endif %}
Processing File...