OVERVIEW
{{ opportunity_record.name }}
{{ opportunity_record.account }}
{% if opportunity_record.contacts.all %}
{% endif %}
{% for contact in opportunity_record.contacts.all %}
{{ contact }}
{% endfor %}
{% if opportunity_record.amount %}
{% endif %}
{{ opportunity_record.currency }} {{ opportunity_record.amount }}
{% if opportunity_record.stage %}
{% endif %}
{{ opportunity_record.stage }}
{% if opportunity_record.lead_source %}
{% endif %}
{{ opportunity_record.lead_source }}
{% if opportunity_record.probability %}
{% endif %}
{{opportunity_record.probability}} %
{% if opportunity_record.closed_on %}
{% endif %}
{{opportunity_record.closed_on|date}}
{% if opportunity_record.description %}
{% endif %}
{% if opportunity_record.tags.all %}
{{opportunity_record.description}}
{% for tag in opportunity_record.tags.all %}
{{ tag.name }}
{% endfor %}
Created by {{ opportunity_record.created_by }} created on
{{ opportunity_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 %}
Processing File...